import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { OrderId } from "./OrderId"; import { OrderItemInfo } from "./OrderItemInfo"; import { OrderState } from "./OrderState"; export declare const OrderResponse: core.serialization.ObjectSchema; export declare namespace OrderResponse { interface Raw { order_id: OrderId.Raw; name: string; state: OrderState.Raw; items: OrderItemInfo.Raw[]; total_amount_usd?: number | null; sandbox?: boolean | null; created_at: string; submitted_at?: string | null; paid_at?: string | null; accepted_at?: string | null; completed_at?: string | null; } }