import { TableProps as PCTableProps } from '@rc-lib/pc'; import React from 'react'; declare type AnyObject = Record; export interface TableProps extends PCTableProps { emptyHeight?: number; } export declare type COGORefTable = (props: React.PropsWithChildren> & { ref?: React.Ref; }) => React.ReactElement; export declare const Table: COGORefTable; export {};