import type { AddressDetails } from './address-details'; export interface Organization { address?: AddressDetails; decimalSeparator: OrganizationDecimalSeparatorEnum; emailAddress?: string; institutionName: string; localDateFormat: string; localDateTimeFormat: string; phoneNumber?: string; } export declare const OrganizationDecimalSeparatorEnum: { readonly Comma: "COMMA"; readonly Point: "POINT"; }; export type OrganizationDecimalSeparatorEnum = (typeof OrganizationDecimalSeparatorEnum)[keyof typeof OrganizationDecimalSeparatorEnum];