import React, { ReactNode } from 'react'; import { StyleProp, ViewStyle } from 'react-native'; type Props = { children: ReactNode; containerStyle?: StyleProp; contentKey: string; }; export default function CollapsibleHeaderContainerProvider({ children, containerStyle, contentKey, }: Props): React.JSX.Element; export {}; //# sourceMappingURL=CollapsibleHeaderContainerProvider.d.ts.map