/** * GlideLocale is a global object that can be called in scripts. Use the get() method to get a GlideLocale object */ export declare class GlideLocale { /** * Returns the GlideLocale object */ static get(): GlideLocale; /** * Returns the decimal separator */ getDecimalSeparator(): string; /** * Returns the grouping separator */ getGroupingSeparator(): string; constructor(); }