export declare class PosPaymentReconciliation {
    id: number;
    reconciliation_code: string;
    store_id: number;
    provider_id: number;
    method_id: number;
    reconciliation_period: string;
    period_start: string;
    period_end: string;
    total_system_amount: number;
    total_provider_amount: number;
    difference_amount: number;
    transaction_count: number;
    matched_count: number;
    unmatched_count: number;
    status: string;
    note: string;
    created_by_user_id: number;
    reviewed_by_user_id: number;
    reviewed_at: Date;
    created_at: Date;
    updated_at: Date;
}
