import type { ComponentProps, PropsWithChildren } from 'react';
export type TextareaProps = ComponentProps<'textarea'>;
export declare const Textarea: ({ className, ...props }: TextareaProps) => import("react/jsx-runtime").JSX.Element;
export type TextareaRootProps = PropsWithChildren<{
    className?: string;
}>;
export declare const TextareaRoot: ({ className, children }: TextareaRootProps) => import("react/jsx-runtime").JSX.Element;
export type TextareaFooterProps = PropsWithChildren<{
    className?: string;
}>;
export declare const TextareaFooter: ({ className, children, }: TextareaFooterProps) => import("react/jsx-runtime").JSX.Element;
