import { AnyType } from "../data-types/type-types";
/**
 * Gives a score for a given type that gives a hint of how many possible branches validation of that type may take.
 * These scores are only useful for direct comparison between them and are not intended to be used for anything else.
 */
export declare function approximateComplexity(t: AnyType): number;
