import { IGatewaySchema } from '../interfaces'; export interface IGatewayMethod { handler: () => Promise; schema: IGatewaySchema; } export interface IGatewayMethodArgs { handler?: () => Promise; schema?: IGatewaySchema; } export declare class GatewayMethod implements IGatewayMethod { schema: IGatewaySchema; handler(): Promise; constructor(args?: IGatewayMethodArgs); }