/**
 *
 * @export
 * @interface PersistableCurrencyAmount
 */
export interface PersistableCurrencyAmount {
    /**
     *
     * @type {number}
     * @memberof PersistableCurrencyAmount
     */
    readonly amount?: number;
    /**
     *
     * @type {string}
     * @memberof PersistableCurrencyAmount
     */
    readonly currency?: string;
}
/**
 * Check if a given object implements the PersistableCurrencyAmount interface.
 */
export declare function instanceOfPersistableCurrencyAmount(value: object): value is PersistableCurrencyAmount;
export declare function PersistableCurrencyAmountFromJSON(json: any): PersistableCurrencyAmount;
export declare function PersistableCurrencyAmountFromJSONTyped(json: any, ignoreDiscriminator: boolean): PersistableCurrencyAmount;
export declare function PersistableCurrencyAmountToJSON(json: any): PersistableCurrencyAmount;
export declare function PersistableCurrencyAmountToJSONTyped(value?: Omit<PersistableCurrencyAmount, 'amount' | 'currency'> | null, ignoreDiscriminator?: boolean): any;
