/// export interface TableHeaderProps extends svelte.JSX.HTMLAttributes { /** * Specify the `scope` attribute * @default "col" */ scope?: string; /** * Override the default id translations * @default () => "" */ translateWithId?: () => string; /** * Set an id for the top-level element * @default "ccs-" + Math.random().toString(36) */ id?: string; } export default class TableHeader { $$prop_def: TableHeaderProps; $$slot_def: { default: {}; }; $on(eventname: "mouseover", cb: (event: WindowEventMap["mouseover"]) => void): () => void; $on(eventname: "mouseenter", cb: (event: WindowEventMap["mouseenter"]) => void): () => void; $on(eventname: "mouseleave", cb: (event: WindowEventMap["mouseleave"]) => void): () => void; $on(eventname: "click", cb: (event: WindowEventMap["click"]) => void): () => void; $on(eventname: string, cb: (event: Event) => void): () => void; }