import { IconDefinition } from '@mezzanine-ui/icons'; import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export type NavigationIconButtonProps = Omit, 'children'> & { /** * Whether the button is in an active state. */ active?: boolean; /** * The icon to be displayed. */ icon: IconDefinition; }; declare const NavigationIconButton: import("react").ForwardRefExoticComponent, "children"> & { /** * Whether the button is in an active state. */ active?: boolean; /** * The icon to be displayed. */ icon: IconDefinition; } & import("react").RefAttributes>; export default NavigationIconButton;