import "../utils/schema.js";
import { ReactNode } from "react";
import "react/jsx-runtime";
import { Ajv2020 } from "ajv/dist/2020";

//#region src/playground/schema.d.ts

interface SchemaScope {
  /**
   * show write only fields
   */
  writeOnly: boolean;
  /**
   * show read only fields
   */
  readOnly: boolean;
}
//#endregion
export { SchemaScope };
//# sourceMappingURL=schema.d.ts.map