UNPKG

apple-svelte

Version:

Component library for Svelte based on Apple's Human Interface design language.

47 lines (46 loc) 1.25 kB
export default Alert; type Alert = SvelteComponent<{ state?: string; showDescription?: boolean; id?: any; style?: any; title?: string; description?: string; }, { [evt: string]: CustomEvent<any>; }, { 'text-field': {}; 'button-1': {}; 'button-2': {}; 'button-3': {}; }> & { $$bindings?: string; }; declare const Alert: $$__sveltets_2_IsomorphicComponent<{ state?: string; showDescription?: boolean; id?: any; style?: any; title?: string; description?: string; }, { [evt: string]: CustomEvent<any>; }, { 'text-field': {}; 'button-1': {}; 'button-2': {}; 'button-3': {}; }, {}, string>; interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; }