export interface StandardProps extends React.HTMLAttributes<HTMLElement> {
    /** The prefix of the component CSS class */
    classPrefix?: string;
    /** Additional classes */
    className?: string;
    /** Primary content */
    children?: React.ReactNode;
    /** Additional style */
    style?: React.CSSProperties;
}
export type SortType = 'desc' | 'asc';
export type TableSizeChangeEventName = 'bodyHeightChanged' | 'bodyWidthChanged' | 'widthChanged' | 'heightChanged';
export interface RowDataType<T = any> {
    dataKey?: string;
    children?: T[];
    [key: string]: any;
}
export type RowKeyType = string | number;
export interface TableLocaleType {
    emptyMessage?: string;
    loading?: string;
}
export type ListenerCallback = {
    off: () => void;
};
export type ElementOffset = {
    top: number;
    left: number;
    width: number;
    height: number;
};
