declare function token<T>(name: string): Token<T>;
declare class Token<T = unknown> {
    readonly type: T;
    readonly name: string;
    constructor(name: string);
}
export { Token, token };
