import type { Snippet } from 'svelte';
interface Props {
    children: Snippet;
    search?: Snippet;
    outerClass?: string;
    headerType?: 'search' | 'textbtn' | 'custom';
    slotClass?: string;
}
/**
 * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
 * ## Props
 * @props: children: any;
 * @props:search: any;
 * @props:outerClass: any;
 * @props:headerType: any = 'search';
 * @props:slotClass: any;
 */
declare const TableHeader: import("svelte").Component<Props, {}, "">;
type TableHeader = ReturnType<typeof TableHeader>;
export default TableHeader;
