export interface IStepsMessage { start: string; end: string; } export declare type TStringSeparator = string; export interface IQuestion { type: string; name: string; message: string; choices?: TStringSeparator[]; default?: boolean; } export interface IInitalizeAnswer { name: string; author: string; }