import { ClassValue } from "clsx"; import { TextareaHTMLAttributes } from "react"; interface Props { /** * Additional class names to apply to the spinner. */ className: ClassValue; /** * Color of the button * @default "neutral" */ color: "primary" | "neutral" | "error" | "warning" | "success"; /** * Floating label text */ label: string; /** * Whether the input is invalid * @default false */ invalid: boolean; } export declare function MultilineInputField({ invalid, color, label, ...props }: TextareaHTMLAttributes & Partial): JSX.Element; export {};