import { LockPolicy } from "../integrity.js"; type RemoveOptions = { verbose?: boolean; dev?: boolean; dryRun?: boolean; lock?: LockPolicy; anySection?: boolean; }; export declare function remove(name: string, { dev, verbose, dryRun, lock, anySection, }?: RemoveOptions): Promise; export {};