10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
/// <reference types="react" />
|
|
export type FooterConfig = {
|
|
site: {
|
|
startYear?: number;
|
|
author: string;
|
|
};
|
|
};
|
|
export declare function Footer({ config }: {
|
|
config: FooterConfig;
|
|
}): JSX.Element;
|