import { SwitchProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const Switch: ({ id, label, on, isRequired, disabled, falseTrackColor, thumbColor, trueTrackColor, onChange, children }: { id: number | string; label: string; on: boolean; falseTrackColor?: string; trueTrackColor?: string; thumbColor?: string; isRequired: boolean; disabled: boolean; onChange: (value: boolean) => void; children: (props: SwitchProps) => ReactNode; }) => ReactNode; export default Switch;