export interface FooterItem { id?: string; targetURL: string; displayText: string; } export interface SecondaryFooterProps { items: FooterItem[]; } export declare const SecondaryFooter: (props: SecondaryFooterProps) => import("react").JSX.Element;