import { ApiItem } from "../types"; export default function json2xml(o: any, tab: any): string; interface Props { responses: ApiItem["responses"]; } export declare function createResponseExamples(responseExamples: any, mimeType: string): string[]; export declare function createResponseExample(responseExample: any, mimeType: string): string; export declare function createExampleFromSchema(schema: any, mimeType: string): string | undefined; export declare function createStatusCodes({ responses }: Props): string | undefined; export {};