/**
 * @description Represents a safe delimiter for use in names.
 * @export
 */
export type SafeDelimiter = '' | '-' | '_' | '__' | '--';
