ParsedTemplateNode: {
    text: string;
    type: "literal";
} | {
    name: string;
    type: "variable";
}

Type that represents a node in a parsed format string. It can be either a literal text or a variable name.