/** * Converts a Postman collection JSON string to an OpenAPI specification document. * * This function transforms a Postman collection into a valid OpenAPI 3.1 document * that can be used throughout the application. The convert function handles parsing * and transformation internally. * * Returns null if the conversion fails due to invalid Postman collection structure */ export declare const getOpenApiFromPostman: (postmanJson: string) => (Omit, "components" | "paths">, keyof { [customExtension: `x-${string}`]: any; [key: string]: any; }> & { openapi?: "3.1.0" | "3.1.1" | "3.1.2"; swagger?: never; info?: import("@scalar/openapi-types").OpenAPIV3_1.InfoObject; jsonSchemaDialect?: string; servers?: import("@scalar/openapi-types").OpenAPIV3_1.ServerObject[]; } & Pick, "paths"> & Omit>, "paths"> & { [customExtension: `x-${string}`]: any; [key: string]: any; }) | null; //# sourceMappingURL=get-openapi-from-postman.d.ts.map