import type { ThemeProps } from 'jamis-core';
export interface InputSwitchProps extends ThemeProps {
    options: Array<any>;
    disabled?: boolean;
    popOverContainer?: any;
    value: any;
    onChange: (value: any) => void;
}
export default function InputSwitch({ options, value, disabled, popOverContainer, className, onChange }: InputSwitchProps): JSX.Element;
