/** * Get Default Value for Field * @module @revealui/core/fields/getDefaultValue */ import type { Field } from './config/types.js'; interface GetDefaultValueArgs { field: Field; locale?: string | null; user?: unknown; } /** * Gets the default value for a field */ export declare function getDefaultValue({ field, locale, user }: GetDefaultValueArgs): unknown; export default getDefaultValue; //# sourceMappingURL=getDefaultValue.d.ts.map