import { TITLE_KEY } from '../../utils/constants/symbol-keys.constant'; /** * Fluent chain for defining an actor by name * and assigning roles */ export declare class IAmChain { get [TITLE_KEY](): ActorName; constructor(actorName: ActorName); /** * Defines an Actor with the given Roles. * * @param roles Roles to attach * @returns Actor */ as(...roles: RoleNames): import("../..").Actor, ...import("../../actor/types/utility.type").ResolveRoles<[...RoleNames]>]>; }