import type { LogParams } from '../../types/internal';
/**
 * Asserts that the value is string.
 */
export declare function assertValueIsString<Type>(value: Type, check: string, payload?: LogParams): asserts value is Type & string;
