import type { FileRecord, PotRecord } from "./types.js"; export interface PotOptions { wsPath: string; } export interface CreatePotInput { name: string; description?: string; } export declare function listPots(opts: PotOptions): Promise; export declare function getPot(ref: string, opts: PotOptions): Promise; export declare function requirePot(ref: string, opts: PotOptions): Promise; export declare function createPot(input: CreatePotInput, opts: PotOptions): Promise; export declare function renamePot(id: string, newName: string, opts: PotOptions): Promise; export declare function deletePot(id: string, opts: PotOptions): Promise; export declare function listPotFiles(ref: string, opts: PotOptions): Promise; //# sourceMappingURL=pots.d.ts.map