import { ToggleButtonProps } from '../toggle-button/toggle-button.types'; export type IconToggleButtonProps = Omit & { /** * Required accessible label for the icon button */ "aria-label": string; /** * Ref forwarding to the button element */ ref?: React.Ref; };