import { LINK_LIST_TYPES } from "../../utils/enums";
export interface LinksList {
    type: LINK_LIST_TYPES | `${LINK_LIST_TYPES}`;
    url: string;
    label: string;
}
export interface LinkGroup {
    groupTitle: string;
    icon: string;
    linksList: LinksList[];
    withBorder: boolean;
}
export declare const defaultLinksList: LinksList[];
export declare const defaultLinkGroup: LinkGroup;
export declare const multipleLinksLists: LinksList[][];
export declare const multipleLinkGroups: LinkGroup[];
