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 TextFieldMultiline: import("svelte").Component<$$ComponentProps, {}, "value">;
type TextFieldMultiline = ReturnType<typeof TextFieldMultiline>;
export default TextFieldMultiline;
