import { IPlugin } from '../../external/types/plugin.types'; import { IUserStateMocks } from '../../external/types/mocks.types'; export declare const pluginMocks: ({ planFeaturesData }: IUserStateMocks, defaultPlugin: IPlugin) => ({ id: string; active: boolean; method: string; url: string; headers: {}; params: string; response: { status: number; delay: number; headers: { 'content-type': string; }; body: { data: { creationSource: string; tier: string; planFeatures: { [x: string]: any; }; }; success: boolean; message: string; }; }; name: string; origin: string; } | { id: string; active: boolean; method: string; url: string; headers: {}; params: string; response: { status: number; delay: number; headers: { 'content-type': string; }; body: { data: { planFeatures: { [x: string]: any; }; guid: string; galleryId: string; name: string; type: string; data: any; projectId?: string | null | undefined; modelVersion: number; description: string | null; previewImage: string | null; creationSource: import("../..").TPlatform; privacy: import("../../external/types/plugin.types").TPluginPrivacy; status: import("../../external/types/plugin.types").TPluginStatus; }; success: boolean; message: string; }; }; name: string; origin: string; })[];