/** * Expense Module Constants * * Organization: * - Page Configuration * - API Routes * - Filter Options * * Table configuration is co-located in page.tsx. */ export declare const pageLimit: number; export declare const EXPENSE_CATEGORY_OPTIONS: { label: string; value: string; }[]; export declare const EXPENSE_STATUS_OPTIONS: { label: string; value: string; }[]; export declare const PAYMENT_METHOD_OPTIONS: { label: string; value: string; }[];