import { IGenericService } from "./IGenericService";
export declare class GenericService implements IGenericService {
    verifyGenericService(serviceName: string, serviceData: {
        [k: string]: any;
    }): Promise<{
        status: "Ok" | "ServiceNotFound" | "VerifyError";
        serviceId: string;
        someDatas?: any;
        error?: string;
    }>;
}
