import { Schema, SchemaProperty, SchemaPropertyType } from '../../schemas/types/schema'; import { SchemaValue } from '../../schemas/types/schemaValues'; import { Require } from '../../types/utilities'; import { CreateApi } from '../../utilities/api'; export declare function getSchemaPropertyTypeLabel(type: SchemaPropertyType | undefined): string; export declare function getSchemaPropertyLabel(property: SchemaProperty): string; export declare function getSchemaPropertyDefaultValue(property: SchemaProperty): SchemaValue; export declare function getSchemaPropertyAllOfDefinitions(property: Require, schema: Schema): SchemaProperty[]; type InitialIndexContext = { property: Require; value: SchemaValue; schema: Schema; api: CreateApi; }; export declare function getInitialIndexForSchemaPropertyAnyOfValue({ value, property, schema, api }: InitialIndexContext): Promise; export {};