import type { FlexBoxProps } from '@xylabs/react-flexbox'; import type { ReactElement } from 'react'; import React from 'react'; export interface BasicHeroProps extends FlexBoxProps { backgroundColor?: string; backgroundImage?: string; button1Href?: string; button1Text?: string; button1To?: string; button2Href?: string; button2Text?: string; button2To?: string; desc: string; gradientTitle?: string; heroImage?: string; subLinkIcon?: ReactElement; subLinkPath?: string; subLinkText1?: string; subLinkText2?: string; sx?: Record; textColor?: string; title: string; title2?: string; } export declare const BasicHero: React.FC; //# sourceMappingURL=BasicHero.d.ts.map