import { SvelteComponent, Snippet } from 'svelte'; import { HTMLAttributes } from 'svelte/elements'; export interface Props { class?: string; /** * Object with Tailwind CSS colors classes * */ colors?: { /** * Table Row hover bg color * * @default 'hover:bg-black/5 dark:hover:bg-white/10' */ bgIos?: string; /** * Table Row hover bg color * * @default 'hover:bg-md-light-secondary-container dark:hover:bg-md-dark-secondary-container' */ bgMaterial?: string; /** * Table Row divider color * * @default 'border-md-light-outline dark:border-md-dark-outline' */ dividerMaterial?: string; }; /** * Is located inside the TableHead */ header?: boolean; } interface TableRowProps {} interface TableRowProps extends Props {} interface TableRowEvents extends Record<'',{}>{} declare class TableRow extends SvelteComponent< TableRowProps & Omit, keyof Props>, TableRowEvents, { } > {} export default TableRow;