import { SvelteComponentTyped } from "svelte";
import type { HTMLAttributes } from 'svelte/elements';
declare const __propDef: {
    props: HTMLAttributes<HTMLTableRowElement> & {
        color?: "blue" | "green" | "red" | "yellow" | "purple" | "default" | "custom";
    };
    events: {
        click: MouseEvent;
        contextmenu: MouseEvent;
        dblclick: MouseEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type TableBodyRowProps = typeof __propDef.props;
export type TableBodyRowEvents = typeof __propDef.events;
export type TableBodyRowSlots = typeof __propDef.slots;
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Props
 * @prop export let color: NonNullable<$$Props['color']> = getContext('color');
 */
export default class TableBodyRow extends SvelteComponentTyped<TableBodyRowProps, TableBodyRowEvents, TableBodyRowSlots> {
}
export {};
