/**
 * Fill object structure by schema, initialize empty objects for keys with `_default` property.
 */
export declare const fillObjectBySchema: (obj: Record<string, any>, schema: Record<string, any>) => Record<string, any>;
