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