export declare const allJSONSchemaTypes: ["null", "number", "string", "boolean", "array", "object"];
export type AllJSONSchemaTypes = typeof allJSONSchemaTypes;
export type JSONSchemaType = AllJSONSchemaTypes[number];
export declare function isJSONSchemaType(value: unknown): value is JSONSchemaType;
/**
 * Returns an array of the provided elements that are {@link JSONSchemaType}s.
 * The elements of the returned array are unique.
 *
 */
export declare function filterJSONSchemaTypes(strings: string[]): JSONSchemaType[];
export declare function getOtherJSONSchemaTypes(types: readonly JSONSchemaType[]): JSONSchemaType[];
