import { IPart } from "./i-part";
import { CommentWrapper } from "./comment-wrapper";
export declare class Wildcard extends CommentWrapper implements IPart {
    constructor();
    toString(): string;
    equal(other: IPart): boolean;
}
export declare function isWildcard(token: unknown): token is Wildcard;
