export declare const items: ({
    key: string;
    title: string;
    children: {
        key: string;
        title: string;
    }[];
} | {
    key: string;
    title: string;
    children?: undefined;
})[];
export declare const customItems: ({
    id: string;
    value: string;
    subs?: undefined;
} | {
    id: string;
    value: string;
    subs: {
        id: string;
        value: string;
    }[];
})[];
