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