/// import type { ISectionTitle, ISectionDescription, ISectionButton } from '../../../types'; import type { ImageViewProps } from '../../pdsOriginal/hybrid/ImageView/ImageView'; import type { TextLabelProps } from '../../pdsOriginal/mobile/TextLabel/TextLabel'; interface SectionSubComponents { Title: React.FunctionComponent; Description: React.FunctionComponent; Image: React.FunctionComponent; Button: React.FunctionComponent; } declare const Section: SectionSubComponents; export default Section;