import { IServiceSchema } from '../interfaces'; export interface IServiceCall { handler: () => Promise; schema: IServiceSchema; } export interface IServiceCallArgs { handler?: () => Promise; schema?: IServiceSchema; } export declare class ServiceCall implements IServiceCall { schema: IServiceSchema; handler(): Promise; constructor(args?: IServiceCallArgs); }