import { TeamOptions } from '../commands/team'; type Answers = { league: string; main: 'team'; teamName: string; teamOptions: TeamOptions; } | { league: string; main: 'matchday' | 'standings' | 'scorers'; }; export declare function questions(): Promise; export {};