import { Predicates } from './predicates';
export interface Modifiers {
/**
Make the following predicate optional so it doesn't fail when the value is `undefined`.
*/
readonly optional: Predicates;
}
declare const _default: <T>(object: T) => T & Modifiers;
export default _default;