File size: 509 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import { SvelteComponentTyped } from "svelte";
import type { ToastTypes } from './types.js';
declare const __propDef: {
props: {
type?: ToastTypes | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type IconProps = typeof __propDef.props;
export type IconEvents = typeof __propDef.events;
export type IconSlots = typeof __propDef.slots;
export default class Icon extends SvelteComponentTyped<IconProps, IconEvents, IconSlots> {
}
export {};
|