interface Props {
    attributes?: Record<string, any>;
}
/** Renders an HTML `<textarea>` element. Accepts optional attributes and child content. */
declare const Textarea: import("svelte").Component<Props, {}, "">;
type Textarea = ReturnType<typeof Textarea>;
export default Textarea;
