import { BaseTranspilerOptions, MitosisComponent, Target } from '..'; /** * Merges options while combining the `plugins` array, and adds any default plugins. */ export declare const mergeOptions: (a: T, b?: Partial, c?: Partial | undefined, d?: Partial | undefined) => T & { plugins: NonNullable; }; /** * Merges options while combining the `plugins` array, and adds any default plugins. */ export declare const initializeOptions: ({ target, component, defaults, userOptions, extra, }: { target: Target; component: MitosisComponent; defaults: T; userOptions?: Partial | undefined; extra?: Partial | undefined; }) => T & { plugins: NonNullable; };