import { TenantConnectionService } from '@/modules/tenant/tenant-connection.service';
export declare class PosEmergencyService {
    private readonly tenantConnectionService;
    constructor(tenantConnectionService: TenantConnectionService);
    exportStoreData(storeId: number): Promise<{
        store_id: number;
        exported_at: string;
        version: string;
        data: Record<string, any[]>;
        row_counts: {
            [k: string]: number;
        };
    }>;
    importStoreData(storeId: number, data: Record<string, any[]>): Promise<{
        store_id: number;
        imported_at: string;
        results: Record<string, number>;
    }>;
}
