import type { Action } from '../types/action';
import type { Random } from '../types/common';
import type { CreateActionOption } from '../types/service';
export declare class BlazeServiceAction {
    readonly serviceName: string;
    readonly actionName: string;
    readonly action: Action;
    constructor(options: CreateActionOption);
    actionHandler(...values: Random[]): Promise<unknown>;
}
