/** A price represented by a float. i.e. $420.69 = 420.69 */ export declare type PriceFloat = number; /** * A price represented by an integer. i.e. $420.69 = 42069 * We only use this for payment providers, while we use floats for * portfolios. */ export declare type PriceInteger = number;