import type { Snippet } from 'svelte';
declare const Table: import("svelte").Component<{
    captionClass?: string;
    class?: string;
    style?: string;
    caption?: string;
    headers?: Array<Record<string, unknown>>;
    rows?: Array<Record<string, unknown>>;
    headersSlot?: Snippet<[Record<string, unknown>]>;
    rowSlot?: Snippet<[Record<string, unknown>]>;
}, {}, "">;
type Table = ReturnType<typeof Table>;
export default Table;
