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