/// <reference types="react" />
export interface FooterProps {
    disable?: boolean;
    pages?: {
        text: string;
        link: string;
    }[];
}
export declare const Footer: ({ disable, pages }: FooterProps) => JSX.Element;
