import { type ShapeToRuntimeType } from './shape-specifiers.js';
/**
 * Creates a default value for the given shape.
 *
 * @category Internal
 */
export declare function shapeToDefaultValue<Shape, IsReadonly extends boolean = false>(shape: Shape): ShapeToRuntimeType<Shape, false, IsReadonly>;
