import * as React from 'react'; import { View } from 'react-native'; interface SubPageHeaderProps { height?: string; componentGap?: number; title?: string; funcComponent?: React.ReactNode[]; backgroundColor?: any; subTitle?: string; subContent?: string; exitEvent: () => void; exitIcon?: React.ReactNode; exitIconColor?: string; titleColor?: string; } declare const SubPageHeader: React.ForwardRefExoticComponent>; export default SubPageHeader; //# sourceMappingURL=sub-page-header.d.ts.map