import type { Type } from '../types';
/**
 * Parse any string value into a type object.
 * @param type String or String[] value like "integer", "Link[Model]" or ["string", "null"].
 * @param format String value like "binary" or "date".
 */
export declare const getType: (type?: string | string[], format?: string | undefined) => Type;
