export interface IGeography { id?: number; assetId?: number; allocation: number; date: Date; name: string; type: string; symbol: string; } export declare function parseGeography(geography: IGeography): IGeography; export interface IGeographyProperties { id?: boolean; date?: boolean; symbol?: boolean; name?: boolean; allocation?: boolean; type?: boolean; assetId?: boolean; } export interface IGeographyPropertiesConfig { properties: IGeographyProperties; relationProperties?: {}; } export declare function defaultGeographyProperties(): IGeographyProperties; export declare function defaultGeographyPropertiesConfig(): IGeographyPropertiesConfig;