@smkit/ui
Version:
UI Kit of SberMarketing
18 lines (17 loc) • 476 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
onDownload?: () => void;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type CsvProps = typeof __propDef.props;
export type CsvEvents = typeof __propDef.events;
export type CsvSlots = typeof __propDef.slots;
export default class Csv extends SvelteComponentTyped<CsvProps, CsvEvents, CsvSlots> {
}
export {};