import { BillingLineItem } from '../models';
import { BaseResponse } from './base-response';
export declare class CreateNotificationResponse extends BaseResponse {
    /** @description The id of the sucessfully created notification*/
    notification_id: string;
    billing_line_items?: BillingLineItem[];
}
