import type { IconButtonProps } from '@mui/material'; import type { Dispatch, SetStateAction } from 'react'; import React from 'react'; export interface SubNavToggleIconButtonProps extends IconButtonProps { openSubNav?: boolean; setOpenSubNav?: Dispatch>; } export declare const SubNavToggleIconButton: React.FC; //# sourceMappingURL=SubNavToggleIconButton.d.ts.map