interface IWithExportImport { value: number | null; } declare type ComputedDatum = Omit & { monetaryValue: number; }; export declare const computeGrossNetTradeValues: (input: T[]) => ComputedDatum[]; interface IWithMonetaryValue { monetaryValue: number; } export declare const filterByMonetaryValues: (data: T[]) => T[]; export declare const minNodeNameFontSize = 8; export declare const labelHorizontalMargin = 0.05; export declare const labelTopMargin = 0.05; export declare const heightProportionReservedForShare = 0.2; export declare const maxCharacterHeightAtMinFontSize: number; export {};