type CastToString<T> = T extends number | boolean ? `${T}` : T extends symbol ? never : T;

export type { CastToString as C };
