import { ComputedRef, MaybeRef } from 'vue'; import { SchemaResponse } from '../models'; import { Schema } from '../types'; export type UseOptionalPropertiesSchema = { schema: ComputedRef; }; export declare function useOptionalPropertiesSchema(rawSchema: MaybeRef): UseOptionalPropertiesSchema;