export declare function getPagesJsonCondition(componentConfig: Array<{
    list: Array<{
        name: string;
    }>;
}>): {
    current: number;
    list: {
        name: any;
        path: string;
    }[];
};
