import React, { ReactElement } from 'react'; import { PageCoreProps } from './PageCore'; declare type PageTableCoreProps = { table: ReactElement; tableColumns?: any[]; filterTableColumnsCacheKey?: string; onHandleColumnsChange?: (key: any) => void; downloadTable?: (any: any) => void; dlLoading?: boolean; onResetTableWidth?: () => void; filterTableZeroDataChecked?: boolean; filterTableZeroDataCacheKey?: string; onFilterTableZeroData?: (any: any) => void; otherBtns?: ReactElement[]; extraBtns?: ReactElement[] | ReactElement; } & PageCoreProps; export declare const PageTableCore: React.FunctionComponent; export {};