/**
 * @module expenseStatus
 * @description A list of expenseStatus
 */
export declare const expenseStatus: readonly ["cancelled", "completed", "failed", "pending", "refunded"];
export declare type ExpenseStatus = (typeof expenseStatus)[number];
