import { TypeGuardFn } from '../typeguards/isType';
/**
 * Get the expected type name from a type guard function
 * @param typeGuardFn - The type guard function to analyze
 * @returns The expected type name as a string
 */
export declare const getExpectedTypeName: (typeGuardFn: TypeGuardFn<any>) => string;
