export declare const startData: {
    requestedReports: any[];
    recentlyViewedReports: any[];
    bookmarks: ({
        reportId: string;
        variantId: string;
        id?: never;
        type?: never;
    } | {
        reportId: string;
        id: string;
        type: string;
        variantId?: never;
    })[];
    subscriptions: never[];
    downloads: string[];
};
export declare const MockUserStoreService: {
    new (): {
        userStore: string;
        setUserConfig(_key: string, config: Record<string, unknown>): Promise<void>;
        getUserConfig(): Promise<any>;
    };
};
