export type TSizes = {
    [key: string]: string;
};
export type OptionProps = {
    size?: string | undefined;
    type?: string | undefined;
    color?: string | undefined;
};
declare const useMenuIcon: ({ size, type, color, }: OptionProps) => {
    open: boolean;
    toggleMenu: () => void;
    options: {
        size: string;
        type: string;
        color: string;
    };
};
export default useMenuIcon;
