import { RaRecord } from "../types.js";
export default function getFormInitialValues(defaultValues: DefaultValue, record?: Partial<RaRecord>): any;
interface DefaultValueObject {
    [key: string]: any;
}
type DefaultValueFunction = (record: RaRecord) => DefaultValueObject;
type DefaultValue = DefaultValueObject | DefaultValueFunction;
export {};
//# sourceMappingURL=getFormInitialValues.d.ts.map