import { RunnerOptions } from '../types/runner'; import { FontGeneratorOptions } from '../types/generator'; import { AssetType } from '../types/misc'; import { AssetsMap } from '../utils/assets'; export declare const getGeneratorOptions: (options: RunnerOptions, assets: AssetsMap) => FontGeneratorOptions; export declare const prefillOptions: (keys: K[], userOptions: { [key in K]?: T; }, getDefault: (type: K) => T) => O; export declare const mergeOptions: (input: T, defaultVal: T) => T;