interface VSCodeExtensionPromptProps {
    onComplete: () => void;
    onSkip: () => void;
}
/**
 * Ink component that prompts the user to install the VS Code extension
 * when running with --vscode flag and the extension isn't installed
 */
export declare function VSCodeExtensionPrompt({ onComplete, onSkip, }: VSCodeExtensionPromptProps): import("react/jsx-runtime").JSX.Element | null;
/**
 * Check if we should show the extension install prompt
 * Returns true if --vscode flag is present
 * The component itself will check if it's already installed
 */
export declare function shouldPromptExtensionInstall(): boolean;
export {};
//# sourceMappingURL=vscode-extension-prompt.d.ts.map