import { Service } from '../interface'; export declare const action: (target: object, key: string | symbol, descriptor: TypedPropertyDescriptor<(...args: any[]) => void>) => { value: (this: Service, ...args: unknown[]) => void; enumerable?: boolean; configurable?: boolean; writable?: boolean; get?: (() => (...args: any[]) => void) | undefined; set?: ((value: (...args: any[]) => void) => void) | undefined; }; //# sourceMappingURL=action.d.ts.map