import type { DefaultValue, DefaultValueContext, FieldSet } from '../@types/field-types.js'; export declare function resolveDefaultValue(defaultValue: DefaultValue | undefined, ctx?: Partial): Promise; export declare function resolveFieldDefaultValue(field: { defaultValue?: DefaultValue; } & Record, ctx?: Partial): Promise; /** * Build initial document data from a field list. * * This is intentionally conservative: it only sets values that are explicitly defaulted * (either via `defaultValue` or via nested structure fields that have child defaults). */ export declare function buildInitialDataFromFields(fields: FieldSet, ctx?: Partial): Promise>;