import { ReactNode } from 'react';
export interface IServices {
    id: number;
    url?: string;
    titulo: string;
}
export interface ICategoriesHeader extends IServices {
    isExternalLink?: boolean;
    links?: ICategoriesHeader[];
}
export type TopConfigs = {
    loginURL?: string;
    registerURL?: string;
    profileURL?: string;
    orderdURL?: string;
    topText?: string;
    exitFunction?: () => void;
};
export interface IMenuMobileProps {
    topChildren?: ReactNode;
    bottomChildren?: ReactNode;
    linksMenu: ICategoriesHeader[];
    topConfigs?: TopConfigs;
}
