import { type SizeTypeValues } from '../../../lib/adaptivity'; import { type HasCaps, type TypographyProps } from '../Typography'; export declare function captionClassNames(sizeY: 'none' | SizeTypeValues, level?: '1' | '2' | '3' | undefined, caps?: boolean): string; export interface CaptionProps extends TypographyProps, HasCaps { /** * Уровень заголовка (от 1 до 3). */ level?: '1' | '2' | '3'; } /** * Используется для мелких подписей. * * @see https://vkui.io/components/typography#caption */ export declare const Caption: ({ className, level, caps, Component, normalize, inline, ...restProps }: CaptionProps) => React.ReactNode; //# sourceMappingURL=Caption.d.ts.map