/// import type { ISectionTitle, ISectionDescription, ISectionButton } from '../../../types'; import type { TextLabelProps } from '../../pdsOriginal/desktop/TextLabel/TextLabel'; import type { ImageViewProps } from '../../pdsOriginal/hybrid/ImageView/ImageView'; export declare function SectionTitle({ text, color, lineHeight, ...textLabelProps }: ISectionTitle & TextLabelProps & { lineHeight?: number; }): JSX.Element; export declare function SectionDescription({ text, color, fontWeight, ...textLabelProps }: ISectionDescription & TextLabelProps & { fontWeight?: string; }): JSX.Element; export declare function SectionImage({ ...imageViewProps }: ImageViewProps): JSX.Element; export declare function SectionButton({ buttonType, backgroundColor, textColor, text, linkType, src, state, borderColor }: ISectionButton): JSX.Element; interface SectionSubComponents { Title: React.FunctionComponent; Description: React.FunctionComponent; Image: React.FunctionComponent; Button: React.FunctionComponent; } declare const Section: SectionSubComponents; export default Section;