UNPKG

@smkit/ui

Version:

UI Kit of SberMarketing

22 lines (21 loc) 573 B
import { SvelteComponentTyped } from "svelte"; import * as I from '../../types'; declare const __propDef: { props: { [x: string]: any; value?: Cell | null | undefined; head: I.Head; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type CellProps = typeof __propDef.props; export type CellEvents = typeof __propDef.events; export type CellSlots = typeof __propDef.slots; export default class Cell extends SvelteComponentTyped<CellProps, CellEvents, CellSlots> { } export {};