/// import { SvelteComponent } from "svelte"; export interface TableContainerProps extends svelte.JSX.HTMLAttributes { /** * Specify the title of the data table * @default "" */ title?: string; /** * Specify the description of the data table * @default "" */ description?: string; /** * Set to `true` to enable a sticky header * @default false */ stickyHeader?: boolean; } export default class TableContainer extends SvelteComponent {}