UNPKG

claritykit-svelte

Version:

A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility

42 lines 1.43 kB
import type { BrainDumpCaptureProps, CaptureMetadata, ProcessingStatus } from './types'; 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; } declare const BrainDumpCapture: $$__sveltets_2_IsomorphicComponent<BrainDumpCaptureProps, { capture: CustomEvent<{ content: string; metadata: CaptureMetadata; }>; process: CustomEvent<{ content: string; tags: string[]; }>; save: CustomEvent<{ content: string; metadata: CaptureMetadata; }>; 'tag-add': CustomEvent<{ tag: string; }>; 'tag-remove': CustomEvent<{ tag: string; }>; 'status-change': CustomEvent<{ status: ProcessingStatus; }>; } & { [evt: string]: CustomEvent<any>; }, {}, {}, "">; type BrainDumpCapture = InstanceType<typeof BrainDumpCapture>; export default BrainDumpCapture; //# sourceMappingURL=BrainDumpCapture.svelte.d.ts.map