export interface Props { tableHeader: any; tableData: any; bordered?: boolean; striped?: boolean; hoverable?: boolean; isDark?: boolean; filterVisible?: boolean; orderByVisible?: boolean; sortVisible?: boolean; customClass?: string; customId?: string; tableCaption?: string; } export declare const capitalize: (str: string) => string; declare const Table: ({ tableHeader, tableData, bordered, striped, hoverable, isDark, filterVisible, orderByVisible, sortVisible, customClass, customId, tableCaption }: Props) => import("react/jsx-runtime").JSX.Element; export default Table;