import { Cre8Element } from '../cre8-element';
/**
* @slot - The component content
*/
export declare class Cre8Table extends Cre8Element {
static styles: import("lit").CSSResult[];
/**
* Specifies the caption/title of the table, visible to all users.
* Increases accessibility of table.
*/
caption?: string;
/**
* Behavior variants
*
*
* - **responsive** stacks column headers with respective table cells on small screens
*
*
*/
behavior?: 'responsive';
/**
* Hoverable rows variant
* 1) Allows the table rows to be styled on hover
*/
isHoverable?: boolean;
/**
* Style variants
*
*
* - **striped** add zebra-striping to table rows within the ``
*
*
*/
variant?: 'striped';
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'cre8-table': Cre8Table;
}
}
export default Cre8Table;
//# sourceMappingURL=table.d.ts.map