import { Currency } from "../../enums/payment/Currency";
export interface AgencyWallet {
    /**
     * Unique identifier for the wallet entry.
     */
    id: number;
    /**
     * ID of the associated agency.
     */
    agency_id: number;
    /**
     * Current balance of the wallet.
     */
    balance: number;
    /**
     * Currency type used in the wallet. This is not changeable after creation.
     */
    currency: keyof typeof Currency;
    /**
     * The date and time when the record was last updated.
     */
    updated_at: Date;
    /**
     * The date and time when the record was created.
     */
    created_at: Date;
}
export declare namespace AgencyWallet { }
