import type { RequestFieldKey } from '../../user-input'; import type { SchemaOf } from '../../helpers'; import { Joi } from '../../helpers'; export interface IInputOption { label: string; question: string; message?: string; fieldName: string; } export declare const inputOptionSchema: Joi.ObjectSchema; export declare type InputOptionList = Record; export interface IConfig { onInputThankyouMessages: string[]; inputOptions: InputOptionList; } export declare const schemaMap: SchemaOf; export declare const schemaMapDefault: import("../../helpers").StrictSchemaMap<{ onInputThankyouMessages: unknown; inputOptions: unknown; }>; export declare const defaultConfig: IConfig;