import { GcloudBase } from "./GcloudBase"; import { GcloudDatastoreIndexes } from "./GcloudDatastore/GcloudDatastoreIndexes"; declare type IImportExportArgv = { kinds?: string[]; namespaces?: string[]; operationLabels?: string[]; }; export declare class GcloudDatastore extends GcloudBase { commandPrefix: string; export(outputUrlPrefix: string, argv: IImportExportArgv): Promise; import(outputUrlPrefix: string, argv?: IImportExportArgv): Promise; indexes(): GcloudDatastoreIndexes; } export {};