import type { AriaAttributes } from "react"; import type React from "react"; export interface NavIconButtonProps extends NavIconButtonAriaAttributes { onClick?: React.MouseEventHandler; accessibleName: string; icon: React.ReactNode; } type NavIconButtonAriaAttributes = Pick; export declare const NavIconButton: React.ForwardRefExoticComponent>; export {};