import React from 'react'; import '../../styles/pageHeader.scss'; declare type extraRightEnum = 'default'; interface headertype { bulkActions?: any[]; children?: React.ReactNode; style?: any; extraRight?: extraRightEnum | React.ReactNode; onSearchChange?: Function; searchOptions?: any; search?: any; } interface Tprops { title?: string | React.ReactNode; header?: headertype; value?: any; rows?: any; onSearch?: Function; } declare const APageHeader: (props: Tprops) => JSX.Element; export default APageHeader;