import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { OrderId } from "./OrderId"; import { OrderState } from "./OrderState"; export declare const OrderSummary: core.serialization.ObjectSchema; export declare namespace OrderSummary { interface Raw { order_id: OrderId.Raw; name: string; state: OrderState.Raw; total_amount_usd?: number | null; sandbox?: boolean | null; submitted_at?: string | null; updated_at?: string | null; } }