/** Blob storage — list / create / delete. */ import type { Client } from './client.js'; import type { StorageResource } from './types.js'; export declare const list: (client: Client, projectId: string, envType?: string) => Promise; export interface CreateInput { readonly name: string; readonly envType: string; } export declare const create: (client: Client, projectId: string, input: CreateInput) => Promise; declare const _delete: (client: Client, projectId: string, storageId: string) => Promise; export { _delete as delete }; //# sourceMappingURL=storage.d.ts.map