platina-core
Version:
UI Kit of SberMarketing
20 lines (19 loc) • 630 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { StyleTableCallback } from '../../types';
declare const __propDef: {
props: {
[x: string]: any;
styleTable?: (StyleTableCallback | null) | undefined;
onDownload?: (() => Promise<void>) | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ExcelProps = typeof __propDef.props;
export type ExcelEvents = typeof __propDef.events;
export type ExcelSlots = typeof __propDef.slots;
export default class Excel extends SvelteComponentTyped<ExcelProps, ExcelEvents, ExcelSlots> {
}
export {};