claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
29 lines • 695 B
TypeScript
declare const Textarea: import("svelte").Component<{
id?: any;
name?: string;
value?: string;
placeholder?: string;
label?: string;
helperText?: string;
error?: string;
disabled?: boolean;
required?: boolean;
readonly?: boolean;
rows?: number;
cols: any;
maxlength: any;
minlength: any;
resize?: string;
autocomplete?: string;
class?: string;
size?: string;
oninput: any;
onchange: any;
onfocus: any;
onblur: any;
onkeydown: any;
onescape: any;
} & Record<string, any>, {}, "value">;
type Textarea = ReturnType<typeof Textarea>;
export default Textarea;
//# sourceMappingURL=Textarea.svelte.d.ts.map