/** @typedef {typeof __propDef.props} TuiThProps */ /** @typedef {typeof __propDef.events} TuiThEvents */ /** @typedef {typeof __propDef.slots} TuiThSlots */ export default class TuiTh extends SvelteComponent<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type TuiThProps = typeof __propDef.props; export type TuiThEvents = typeof __propDef.events; export type TuiThSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};