/** String representation of a boolean used in data attributes and persisted values. */
export enum BooleanString {
	TRUE = 'true',
	FALSE = 'false'
}
