import React from 'react';
import type { IToggleStandAlone } from './types/toggle';
/**
 * @description
 * Toggle component is a component that can be used to switch between two states.
 * @param {React.PropsWithChildren<IToggleStandAlone>} props
 * @returns {JSX.Element}
 */
export declare const ToggleStandAlone: React.ForwardRefExoticComponent<IToggleStandAlone & React.RefAttributes<HTMLDivElement>>;
