import type { Snippet } from 'svelte';
interface Props {
    class?: string;
    header?: string;
    children?: Snippet;
}
declare const TableCol: import("svelte").Component<Props, {}, "">;
type TableCol = ReturnType<typeof TableCol>;
export default TableCol;
