export declare type TokenType = {
    pattern?: RegExp;
    escape?: boolean;
    transform?: (value: string) => string;
};
export declare const tokens: Record<string, TokenType>;
