import type { TextareaProps } from './Textarea'; export interface OldTextareaProps extends Omit { /** @deprecated status='error'를 대신 사용해주세요. */ error?: boolean; /** @deprecated hasCounter를 대신 사용해주세요. */ showCounter?: boolean; } export declare function convertOldTextareaProps(props: OldTextareaProps): TextareaProps;