import type { ChooseOption } from '../editor/index.js'; import type { Translator } from '../locale/index.js'; import { gridStep, initialChoice } from './parts/grid.js'; export interface ChoosePanelOptions { readonly question: string; readonly options: readonly ChooseOption[]; readonly surface: HTMLElement; readonly locale?: string; readonly translator?: Translator; } export { gridStep, initialChoice }; export declare const CHOOSE_COLS = 3; export declare function openChoosePanel(options: ChoosePanelOptions): Promise; //# sourceMappingURL=choose.d.ts.map