import { Base, Type } from "./type";
import { PathMarkupTokenType } from "./PathMarkupTokenType";
export declare class PathMarkupToken extends Base {
static $t: Type;
c: PathMarkupTokenType;
a: boolean;
b: number;
constructor(a: PathMarkupTokenType, b: boolean);
}