import { PropsOf } from '@builder.io/qwik';
export type FooterTitleProps = PropsOf<'h2'> & {
    tag?: 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p';
};
export declare const FooterTitle: import("@builder.io/qwik").Component<FooterTitleProps>;
