import type { ConfigTemplate } from '../lib/types';
export interface InitFormProps {
    onSuccess: (result: {
        projectId: string;
        projectName: string;
        configPath: string | null;
    }) => void;
    onCancel: () => void;
    initialData?: {
        source?: 'new' | 'existing';
        projectName?: string;
        configTemplate?: ConfigTemplate;
        projectId?: string;
    };
}
export declare function InitForm({ onSuccess, onCancel, initialData }: InitFormProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=InitForm.d.ts.map