import type { TableProps } from "antd/lib/table";
import "./StandardTable.scss";
export interface StandardTableCustomProps extends TableProps<any> {
    /**Option pass id of table */
    idContainer?: string;
    /**Table is draggable */
    isDragable?: boolean;
    /**Used to change style table */
    className?: string;
    /**Show sorter tooltip */
    showSorterTooltip?: boolean;
}
declare function StandardTable(props: StandardTableCustomProps): import("react/jsx-runtime").JSX.Element;
export default StandardTable;
