import { TextareaProps } from './Textarea';
export declare const TEXTAREA_SIZE: readonly ["medium", "small"];
export type TextareaSize = (typeof TEXTAREA_SIZE)[number];
type ValidationProps = Pick<TextareaProps, 'id' | 'label' | 'hideLabel' | 'popoverContent'>;
/**
 * Validates the given properties of the DSTextarea component for common configuration errors.
 * This function is intended to be used in development mode to provide developers with
 * warnings about potential misuse of the component.
 *
 * @param validationProps - The subset of DSTextarea properties to validate.
 */
export declare const validateTextareaProps: ({ id, label, hideLabel, popoverContent, }: ValidationProps) => void;
export {};
