ItemAccessory: ObjectSchema<{
    date: OptionalSchema<UnionSchema<[DateSchema<undefined>, ObjectSchema<{
        color: SchemaWithPipe<[StringSchema<undefined>, HexColorAction<string, undefined>]>;
        text: DateSchema<undefined>;
    }, undefined>], undefined>, never>;
    icon: OptionalSchema<ObjectSchema<{
        type: EnumSchema<typeof IconEnum, undefined>;
        value: StringSchema<undefined>;
    }, undefined>, never>;
    nodeName: EnumSchema<typeof NodeNameEnum, undefined>;
    tag: OptionalSchema<UnionSchema<[StringSchema<undefined>, ObjectSchema<{
        color: SchemaWithPipe<[StringSchema<undefined>, HexColorAction<string, undefined>]>;
        text: StringSchema<undefined>;
    }, undefined>], undefined>, never>;
    text: OptionalSchema<UnionSchema<[StringSchema<undefined>, ObjectSchema<{
        color: SchemaWithPipe<[StringSchema<undefined>, HexColorAction<string, undefined>]>;
        text: StringSchema<undefined>;
    }, undefined>], undefined>, never>;
    tooltip: OptionalSchema<StringSchema<undefined>, never>;
}, undefined> = ...