import type { JSVOptions } from "@theme/JSONSchemaViewer/contexts"; import type { IResolveOpts } from "@stoplight/json-ref-resolver/types"; export type Props = { /** * The JSON schema to use */ schema: unknown; /** * To customize the ref resolving * By default, only inline references will be dereferenced by @stoplight/json-ref-resolver */ resolverOptions?: IResolveOpts; /** * To customize the viewer itself */ viewerOptions?: Omit; /** * To customize the styles of the viewer, to override docusaurus styles on a specific page */ className?: string; }; //# sourceMappingURL=index.d.ts.map