import { PlainObject } from '../types'; export declare const arrayDeepApplyDefaults: (actualValues: any[] | undefined, defaultValues: any[]) => any[]; export declare const objectDeepApplyDefaults: (actualValues: PlainObject | undefined, defaultValues: PlainObject) => PlainObject;