import { FunctionComponent, PropsOf } from '@builder.io/qwik'; export type FooterProps = PropsOf<'footer'> & { bgDark?: boolean; container?: boolean; }; export declare const Footer: FunctionComponent;