import type { JsonSchemaWithVirtual } from '../../../types';
/**
 * Returns default value from JSON Schema's default property or based on type
 * @param jsonSchema - JSON Schema
 * @returns Default value
 */
export declare const getDefaultValue: <Schema extends {
    type?: JsonSchemaWithVirtual["type"];
    default?: any;
}>(jsonSchema: Schema) => any;
