import { PropsOf } from '@builder.io/qwik'; type JumbotronProps = Omit, 'align'> & { align?: 'center' | 'left' | 'right'; }; export declare const Jumbotron: ({ children, class: classNames, align, ...attrs }: JumbotronProps) => import("@builder.io/qwik").JSXOutput; export {};