@smkit/ui
Version:
UI Kit of SberMarketing
21 lines (20 loc) • 588 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
cancelBtnText?: string;
submitBtnText?: string;
};
events: {
close: CustomEvent<void>;
submit: CustomEvent<void>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ActionsProps = typeof __propDef.props;
export type ActionsEvents = typeof __propDef.events;
export type ActionsSlots = typeof __propDef.slots;
export default class Actions extends SvelteComponentTyped<ActionsProps, ActionsEvents, ActionsSlots> {
}
export {};