import * as React from 'react'; import { type StarterTemplate } from '../api/templates'; type Selection = { kind: 'blank'; } | { kind: 'starter'; starter: StarterTemplate; }; interface Props { open: boolean; onClose: () => void; onPick: (selection: Selection) => void; } declare const StarterPickerModal: React.FC; export default StarterPickerModal; //# sourceMappingURL=StarterPickerModal.d.ts.map