/// <reference types="react" />
import { FieldBaseProps } from "./FieldBase";
export interface FieldSwitchProps extends FieldBaseProps {
    color?: "default" | "primary" | "secondary";
    labelBefore?: string;
    size?: "medium" | "small";
}
export declare const FieldSwitch: (props: FieldSwitchProps) => JSX.Element;
