import React from 'react'; import { IconProps } from '../icons'; import { CheckboxProps } from '@ariakit/react'; import * as styles from './styles.css'; type Props = Omit & styles.Variants & { iconLeft?: React.ReactElement; iconRight?: React.ReactElement; }; export declare const SwitchButton: React.FC>; export {};