/**
 *
 * @export
 * @interface ProfitAndLossIndicator
 */
export interface ProfitAndLossIndicator {
    /**
     * The total amount of the transaction or record
     * @type {number}
     * @memberof ProfitAndLossIndicator
     */
    total: number | null;
}
export declare function ProfitAndLossIndicatorFromJSON(json: any): ProfitAndLossIndicator;
export declare function ProfitAndLossIndicatorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfitAndLossIndicator;
export declare function ProfitAndLossIndicatorToJSON(value?: ProfitAndLossIndicator | null): any;
