import { CSSProperties, PropsWithChildren } from 'react'; type WithStyles = { style?: CSSProperties; className?: string; }; type WithId = { id?: string; }; export declare const FooterContent: (props: PropsWithChildren & WithStyles & WithId) => import("react").JSX.Element; export declare const FooterParagraph: (props: PropsWithChildren & WithStyles & WithId) => import("react").JSX.Element; export declare const FooterIcons: (props: PropsWithChildren & WithStyles) => import("react").JSX.Element; export declare const FooterDisclosure: (props: PropsWithChildren & WithStyles) => import("react").JSX.Element; export {};