import { SyncValidation } from '../../types.js'; /** * Ensure the value exists. `null`, `undefined` and `empty string` * fails the validation */ export declare const requiredIfExists: SyncValidation<{ field: string; }>;