declare type Prompts = {
    remote: boolean;
    hasScope: boolean;
    scope: string | boolean;
    src: string | boolean;
    package: string | boolean;
    name: string;
    path?: string;
    impression?: string;
};
/**
 * Convert a component from one framework to another.
 *
 * @param {string} prompts - prompts: Object of the values from the prompt questions;
 * @returns NULL
 */
export declare const convertComponent: (prompts: Prompts) => void;
export {};
