import { ClassList, PropsOf } from '@builder.io/qwik'; export type TableTheme = { root?: ClassList; body?: ClassList; cell?: ClassList; head?: ClassList; headCell?: ClassList; row?: ClassList; }; export type TableProps = PropsOf<'table'> & { striped?: boolean; hoverable?: boolean; theme?: TableTheme; }; export declare const Table: import("@builder.io/qwik").Component;