import type { FunctionComponent } from 'react';
interface HamburgerIconProps {
    /**
     * Width of the HamburgerIcon
     */
    width?: string;
    /**
     * Whether the HamburgerIcon is active or not
     */
    isActive?: boolean;
}
export declare const HamburgerIcon: FunctionComponent<HamburgerIconProps>;
export {};
