import type { Actions } from '../types/action';
import type { Events } from '../types/event';
import type { Service } from '../types/service';
export declare function createService<N extends string, V extends number, A extends Actions, E extends Events, S extends Service<N, V, A, E>>(service: S): S;
