import { IType } from "../../internal"; export declare function frozen(subType: IType): IType; export declare function frozen(defaultValue: T): IType; export declare function frozen(): IType; /** * Returns if a given value represents a frozen type. * * @param type * @returns */ export declare function isFrozenType, T = any>(type: IT): type is IT;