import { DescriptorServiceHelperOptions } from "./packageObjectHelper";
export type ServiceHelperOptionsType = {
    servicePath: string;
} & DescriptorServiceHelperOptions;
export declare const serviceHelper: <T>(options: ServiceHelperOptionsType) => Promise<T>;
