import React from 'react'; import { StyleProp, TextStyle, ViewStyle } from 'react-native'; interface Section { title: string; data: unknown[]; } interface Props { section: Section; /** Caller-supplied renderer; takes precedence over the default. */ renderSectionHeader?: (section: any) => React.ReactElement | null; /** Style merged on top of the default header container. */ sectionHeaderStyle?: StyleProp; /** Style merged on top of the default header text. */ sectionHeaderTextStyle?: StyleProp; /** Extra style applied to the `` (typically a `fontFamily` override). */ fontStyle?: StyleProp; allowFontScaling?: boolean; } /** * Default section-header used when the consumer doesn't pass * `renderSectionHeader`. Previously duplicated as `_renderSectionHeader` * in both Dropdown and MultiSelect. */ export declare function DropdownSectionHeader({ section, renderSectionHeader, sectionHeaderStyle, sectionHeaderTextStyle, fontStyle, allowFontScaling, }: Props): React.JSX.Element | null; export {}; //# sourceMappingURL=DropdownSectionHeader.d.ts.map