import React from "react";
import { BooleanSwitchProps } from "./BooleanSwitch";
export type BooleanSwitchWithLabelProps = BooleanSwitchProps & {
    position?: "start" | "end";
    invisible?: boolean;
    label?: React.ReactNode;
    error?: boolean;
    autoFocus?: boolean;
    fullWidth?: boolean;
    className?: string;
    inputClassName?: string;
    switchAdornment?: React.ReactNode;
};
/**
 * Simple boolean switch.
 *
 */
export declare const BooleanSwitchWithLabel: ({ value, position, size, invisible, onValueChange, error, label, autoFocus, disabled, className, fullWidth, inputClassName, switchAdornment, ...props }: BooleanSwitchWithLabelProps) => React.JSX.Element;
