import React, { ReactNode } from 'react'; import type { ResponsiveValue } from '@shopify/restyle'; import { Theme } from '../../theme/theme'; declare type SwitchButtonProps = { isOn: boolean; onToggle: React.Dispatch>; IconOn?: ReactNode; IconOff?: ReactNode; onColor?: ResponsiveValue; offColor?: ResponsiveValue; size?: 'small' | 'large'; disabled?: boolean; }; export declare const SwitchButton: (props: SwitchButtonProps) => JSX.Element; export {};