import { StyledProp } from '@codeleap/styles' import { InputBaseProps } from '../InputBase' import { SwitchComposition } from './styles' import { BooleanField } from '@codeleap/form' export type SwitchProps = Omit & { field?: BooleanField style?: StyledProp switchOnLeft?: boolean forceError?: boolean value?: boolean onValueChange?: (value: boolean) => void }