/** * Type of the input text. Defaults to `null`. Other options: `query`, `document`. * */ export declare const MultimodalEmbedRequestInputType: { readonly Query: "query"; readonly Document: "document"; }; export type MultimodalEmbedRequestInputType = (typeof MultimodalEmbedRequestInputType)[keyof typeof MultimodalEmbedRequestInputType];