/**
 * Represents the status value of a proposal.
 * Can be one of the following values:
 * 0 - Draft
 * 1 - Published
 * 2 - Archived
 * 3 - Deleted
 * 4 - Pending
 */
type ProposalStatusValue = 0 | 1 | 2 | 3 | 4;
export { ProposalStatusValue };
//# sourceMappingURL=proposalstatusvalue.d.ts.map