import type { Plugin } from 'vite'; export interface DynamicComponentCreatorOptions { /** * Enable debug logging * @default false */ debug?: boolean; /** * Force enable the plugin even when PROYECTA_DEV_MACHINE is not set * @default false */ force?: boolean; /** * Base path for resolving @/ imports * @default 'src' */ aliasBase?: string; } /** * Vite plugin that dynamically creates missing React component files * when they are imported but don't exist yet. */ export declare function dynamicComponentCreatorPlugin(options?: DynamicComponentCreatorOptions): Plugin; export default dynamicComponentCreatorPlugin; //# sourceMappingURL=dynamic-component-creator.d.ts.map