import { Datasource, Geography } from "../../src/index.js"; export interface PrecalcSubsetAnswer { subset: string; } export declare function precalcSubsetQuestion(): Promise; export interface PrecalcAnswers { precalcWhichDs: "list" | "all"; precalcWhichGeos: "list" | "all"; } export declare function precalcWhichDsQuestion(numDs: number): Promise>; export interface PrecalcGeosAnswers { precalcWhichGeos: "list" | "all"; } export declare function precalcWhichGeosQuestion(): Promise>; export interface DatasourcesAnswers { datasources: string[]; } export declare function datasourcesQuestion(datasources: Datasource[]): Promise; export declare function getDatasourcesQuestion(datasources: Datasource[]): Promise<{ choices: { value: string; name: string; }[]; type: string; name: string; message: string; }>; export interface GeographiesAnswers { geographies: string[]; } export declare function geographiesQuestion(geographies: Geography[]): Promise; export declare function getGeographiesQuestion(geographies: Geography[]): Promise<{ choices: { value: string; name: string; }[]; type: string; name: string; message: string; }>;