import type { DtoTransactionStatus } from './DtoTransactionStatus'; export interface DtoBillPayPurchaseResponse { status: DtoTransactionStatus; transactionId: string; } export declare function instanceOfDtoBillPayPurchaseResponse(value: object): value is DtoBillPayPurchaseResponse; export declare function DtoBillPayPurchaseResponseFromJSON(json: any): DtoBillPayPurchaseResponse; export declare function DtoBillPayPurchaseResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtoBillPayPurchaseResponse; export declare function DtoBillPayPurchaseResponseToJSON(json: any): DtoBillPayPurchaseResponse; export declare function DtoBillPayPurchaseResponseToJSONTyped(value?: DtoBillPayPurchaseResponse | null, ignoreDiscriminator?: boolean): any;