import { HasMethod } from './types';
/**
 * Checking for the presence of a method by its name with confirmation for TypeScript
 * @param value Object to check
 * @param method Method name
 */
export declare function hasMethod<M extends string | number | symbol>(value: HasMethod<M> | unknown, method: M): value is HasMethod<M>;
