/// <reference types="react" />
import './Text_typography_caption-l.css';
export interface ITextTypographyCaptionLProps {
    /**
     * Типографика текста
     */
    typography?: 'caption-l';
}
/**
 * Модификатор, отвечающий за типографику текста.
 * @param {ITextTypographyCaptionLProps} props
 */
export declare const withTypographyCaptionL: {
    <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: import("react").ComponentType<ITextTypographyCaptionLProps & K>): (props: ITextTypographyCaptionLProps & K) => import("react").ReactElement<any, string | ((props: any) => import("react").ReactElement<any, any> | null) | (new (props: any) => import("react").Component<any, any, any>)>;
    __isSimple: boolean;
    __blockName: string;
    __mod: string;
    __value: string | number | boolean | undefined;
    __passToProps: boolean;
};
