import type { SingleIconButtonProps } from '../button/types.js'; import { type BaseToggleButtonProps } from './internal-toggle-button.js'; export interface ToggleIconButtonProps extends Omit, Omit { /** The label describing the function of this button for assistive technologies. Must remain the same regardless of selection state. */ 'aria-label': string; } /** * Displays an icon-only button that allows users to toggle between two states. * Can be used standalone, or as part of `ToggleButtonGroup`. * * See [toggle button usage guidelines](https://ui.cimpress.io/components/toggle-button/). */ declare const _ToggleIconButton: (props: ToggleIconButtonProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _ToggleIconButton as ToggleIconButton }; //# sourceMappingURL=toggle-icon-button.d.ts.map