import type { CommandArgs } from '../wrapper';
import type { VerifyConfigOptions } from '../types';
export type EjectOptions = {
    type: 'component';
    path?: string;
    'project-dir'?: string;
    force: boolean;
} & VerifyConfigOptions;
export declare const handleEject: ({ argv }: CommandArgs<EjectOptions>) => Promise<void>;
