import { TPattern } from './TPattern'; export declare type TInvokeObject = { serviceId: string; } & Partial<{ id: string; data: TPattern; transform: (response: any) => Promise | any; timeout: number; timeoutFallback: (() => any | Promise) | any; retry: number; }>;