import { SimpleTableCols } from "../../../types"; export declare const COLUMNS_LEDGER: SimpleTableCols[]; export declare const COLUMNS_GRANTS: SimpleTableCols[]; export declare const PREPAID_CARD_TYPE_MAP: Record; export declare const PAYMENT_STATUSES: { PRE_PAYMENT: string; REQUIRES_ACTION: string; PENDING: string; FAILED: string; SETTLED: string; UNKNOWN: string; NOT_NEEDED: string; }; export declare const MAP_STATUS: { [x: string]: { label: string; type: string; }; not_needed: { label: string; type: string; }; }; export declare const PREPAID_STATUS_MAP: { [x: string]: { label: string; type?: undefined; } | { label: string; type: string; }; };