export declare class PosSyncMutation {
    id: number;
    batch_id: number;
    device_id: number;
    store_id: number;
    client_mutation_id: string;
    entity_name: string;
    entity_local_id: string;
    entity_server_id: number;
    action: string;
    payload_json: Record<string, unknown>;
    payload_hash: string;
    status: string;
    error_message: string;
    client_created_at: Date;
    server_applied_at: Date;
    created_at: Date;
}
