UNPKG

apple-svelte

Version:

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

37 lines (36 loc) 1.11 kB
export default SegmentedControlButton; type SegmentedControlButton = SvelteComponent<{ state?: string; id?: any; style?: any; label?: string; onPress?: any; inputGroup?: string; }, { [evt: string]: CustomEvent<any>; }, {}> & { $$bindings?: string; }; declare const SegmentedControlButton: $$__sveltets_2_IsomorphicComponent<{ state?: string; id?: any; style?: any; label?: string; onPress?: any; inputGroup?: string; }, { [evt: string]: CustomEvent<any>; }, {}, {}, 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; }