import type { OpenAPIV3 } from 'openapi-types'; export type Options = { init?: boolean; config?: string[]; }; export type OpenApi = OpenAPIV3.Document; export declare const isReferenceObject: (schema: any) => schema is OpenAPIV3.ReferenceObject; export declare const isArraySchemaObject: (schema: any) => schema is OpenAPIV3.ArraySchemaObject;