import type { TypePredicateFn } from '../types/functions.js';
import type { WithPath } from '../types/objects.js';
export declare function assertPathExists(input: Input, path: InputPath): asserts input is Input & WithPath;
export declare function assertPathExists(input: Input, path: InputPath, predicate: TypePredicateFn): asserts input is Input & WithPath;