import type { IconifyIcon } from "@iconify/types"; import type { HTMLTextareaAttributes } from "svelte/elements"; type $$ComponentProps = { label: string; leadingIcon?: IconifyIcon; disabled?: boolean; required?: boolean; error?: boolean; value?: string; } & HTMLTextareaAttributes; declare const TextFieldOutlinedMultiline: import("svelte").Component<$$ComponentProps, {}, "value">; type TextFieldOutlinedMultiline = ReturnType; export default TextFieldOutlinedMultiline;