import type { RequestBodyObject } from "docusaurus-plugin-openapi-docs/src/openapi/types"; /** * Merges the spec-declared `encoding` for the active content type with any * per-field content-type selections the user has made in the UI. User picks * take precedence over the spec default. * * Returns `undefined` when no encoding is declared for the current content * type so callers can skip the encoding path entirely. */ export declare function useResolvedEncoding(requestBody: RequestBodyObject | undefined): Record | undefined;