import { ClientConfig, Config } from '../../types';
import { IntegrationTestConfig } from './types';
export declare const mockProjectId = 1;
export declare const mockStoragesById: {
    [key: string]: {
        name: string;
        data: unknown;
    };
};
export declare const mockFiles: any[];
export declare const mockDirectories: any[];
export declare const runProjectIntegrationTests: ({ getAppConfig, integrationTestConfig, }: {
    getAppConfig: () => Promise<Config | ClientConfig>;
    integrationTestConfig: IntegrationTestConfig;
}) => void;
