export declare type primitive = boolean | number | string | symbol | null | undefined;
export declare type Classy<T> = Function & {
    prototype: T;
};
export declare type TypeGuard<T> = (x: unknown) => x is T;
