export interface ISchemaSeparators { thousand: string; decimal: string; } export interface ISchemaUser { identifier?: string; email?: string; separators?: ISchemaSeparators; }