import { HTMLAttributes } from 'react'; import { PropsWithChildren } from '../common'; export type CaptionProps = { /** Окрасить при ошибке */ error?: boolean; /** Абсолютное позиционирование, не занимает место между полями */ absolute?: boolean; } & PropsWithChildren & Pick, 'className'>;