import type { UmbPropertyEditorConfig } from '../../core/property-editor/index.js'; /** * Resolves the value a numeric property should be preset with, based on its `min`/`max` configuration. * @param {UmbPropertyEditorConfig} config - The property editor configuration. * @returns {number | undefined} The value to preset, or `undefined` to leave the field empty. */ export declare function umbResolveNumberPresetValue(config: UmbPropertyEditorConfig): number | undefined;