9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
export type FooterConfig = {
|
|
site: {
|
|
startYear?: number;
|
|
author: string;
|
|
};
|
|
};
|
|
export declare function Footer({ config }: {
|
|
config: FooterConfig;
|
|
}): JSX.Element;
|