import type { ReactNode } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export type ControlSectionProps = { readonly title: string; readonly children: ReactNode; readonly style?: StyleProp; }; export declare function ControlSection({ title, children, style }: ControlSectionProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=control-section.d.ts.map