import type { AnyType } from "./schemas";
import type { TypeInfo } from "./TypeChecker";
/**
 * Gets the type info of a given type.
 *
 * @param type Type to get the info from.
 * @returns The type info.
 */
export declare function getTypeInfo(type: AnyType): TypeInfo;
