import { Type } from './reflection/type.js'; /** * Returns a sensible default value for a given type. * Sensible means it satisfies the type checker, but not necessarily attached validators. */ export declare function defaultValue(type: Type): any;