import { RemoteMethodOptions } from '../../types/RemoteMethodOptions'; export declare type RMIMethod = { (...args: any[]): unknown; isLocal: false; options: Omit; } | { (...args: any[]): unknown; isLocal: true; options: undefined; };