/// import React, { ReactElement, ReactNode } from 'react'; import { InputStatus } from '../input/types'; import { CSSValueWithLength } from '../../styles'; import { IconProps } from '../icons/generated'; type FormHelperTextElement = keyof Pick; export interface FormHelperTextProps extends React.Attributes { children?: ReactNode; icon?: ReactElement | boolean; /** @default 'span' */ as?: FormHelperTextElement; /** @default 'info' */ status?: InputStatus; /** @deprecated FormHelperText 사용처에서 margin 마이그레이션 이후 스펙아웃될 예정입니다. */ mt?: CSSValueWithLength; } export declare const FormHelperText: React.FC]>; export {};