/// <reference types="react" />
import './Checkbox_lines_one.css';
export interface ICheckboxLinesOneProps {
    lines?: 'one';
}
/**
 * @param {ICheckboxLinesOneProps} props
 */
export declare const withLinesOne: {
    <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: import("react").ComponentType<ICheckboxLinesOneProps & K>): (props: ICheckboxLinesOneProps & 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;
};
