import '@oicl/openbridge-webcomponents/dist/components/table-header-item/table-header-item.js'; import type { ObcTableHeaderItemType, ObcTableHeaderItemSortDirection } from '@oicl/openbridge-webcomponents/dist/components/table-header-item/table-header-item.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; type?: ObcTableHeaderItemType; disabled?: boolean; hasLeadingIcon?: boolean; sortDirection?: ObcTableHeaderItemSortDirection; showDivider?: boolean; checked?: boolean; sortable?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcTableHeaderItem: import("svelte").Component<$$ComponentProps, { ObcTableHeaderItemType: typeof ObcTableHeaderItemType; ObcTableHeaderItemSortDirection: typeof ObcTableHeaderItemSortDirection; }, "">; type ObcTableHeaderItem = ReturnType; export default ObcTableHeaderItem;