import { AriaCheckboxProps } from 'react-aria'; import React from 'react'; import { StyleProps } from '../../utils'; interface SwitchProps extends AriaCheckboxProps, StyleProps { ref?: React.RefObject; icons?: boolean; showOnlySelectedIcon?: boolean; color?: 'primary' | 'secondary' | 'tertiary' | 'error'; } declare const Switch: { (props: SwitchProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Switch }; //# sourceMappingURL=Switch.d.ts.map