import { TableBodyProps, TableCellProps, TableFooterProps, TableHeadProps, TablePaginationProps, TableProps, TableRowProps, TableSortCellProps } from './types'; export declare const styleTable: (props: TableProps) => { main: string[]; wrapper: string[]; }; export declare const styleTableHead: (props: TableHeadProps) => string[]; export declare const styleTableBody: (props: TableBodyProps) => string[]; export declare const styleTableFooter: (props: TableFooterProps) => string[]; export declare const styleTableRow: (props: TableRowProps) => string[]; export declare const styleTableCell: (props: TableCellProps) => string[]; export declare const styleTableSortCell: (props: TableSortCellProps) => { main: string[]; inner: string[]; icon: string[]; }; export declare const styleTablePagination: (props: TablePaginationProps) => { main: string[]; actions: string[]; perPage: string[]; };