/** * Dev Start Screen * * Initial configuration screen for dev CLI. * Allows selecting tier, recording options, and starting the session. * * @since v1.42.0 */ import { type DevSessionConfig } from '../types/dev-types.js'; interface DevStartScreenProps { onStart: (config: DevSessionConfig) => void; onQuit: () => void; } /** * Dev CLI start screen */ export declare function DevStartScreen({ onStart, onQuit }: DevStartScreenProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=DevStartScreen.d.ts.map