/** @typedef {typeof __propDef.props} CellProps */ /** @typedef {typeof __propDef.events} CellEvents */ /** @typedef {typeof __propDef.slots} CellSlots */ export default class Cell extends SvelteComponentTyped<{ style: any; color: any; wide: any; marked: any; textAlign: any; verticalAlign: any; class?: string; disabled?: boolean; active?: boolean; error?: boolean; warning?: boolean; positive?: boolean; negative?: boolean; selectable?: boolean; collapsing?: boolean; singleLine?: boolean; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type CellProps = typeof __propDef.props; export type CellEvents = typeof __propDef.events; export type CellSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { style: any; color: any; wide: any; marked: any; textAlign: any; verticalAlign: any; class?: string; disabled?: boolean; active?: boolean; error?: boolean; warning?: boolean; positive?: boolean; negative?: boolean; selectable?: boolean; collapsing?: boolean; singleLine?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};