declare const isType: <R>() => <I>(input: R | I, validator: (unk: R | I) => boolean) => input is R;

export { isType };
