/** @typedef {typeof __propDef.props} HcellProps */ /** @typedef {typeof __propDef.events} HcellEvents */ /** @typedef {typeof __propDef.slots} HcellSlots */ export default class Hcell extends SvelteComponentTyped<{ style: any; sorted: any; class?: string; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type HcellProps = typeof __propDef.props; export type HcellEvents = typeof __propDef.events; export type HcellSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { style: any; sorted: any; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};