import type { ChangeProposal } from './types.js'; export declare const CHANGES_DIR = ".prodara/changes"; export declare const ARCHIVE_DIR = ".prodara/changes/archive"; export declare function createProposal(description: string, root: string): ChangeProposal; export declare function listProposals(root: string): ChangeProposal[]; export declare function getProposal(name: string, root: string): ChangeProposal | null; export declare function applyProposal(name: string, root: string): ChangeProposal; export declare function archiveProposal(name: string, root: string): ChangeProposal; //# sourceMappingURL=proposal.d.ts.map