UNPKG

@smkit/ui

Version:

UI Kit of SberMarketing

20 lines (19 loc) 506 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; length?: null; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type TotalProps = typeof __propDef.props; export type TotalEvents = typeof __propDef.events; export type TotalSlots = typeof __propDef.slots; export default class Total extends SvelteComponentTyped<TotalProps, TotalEvents, TotalSlots> { } export {};