declare const defaultValues: { name: { type: string; default: undefined; describe: string; validate: (value: string) => boolean; }; type: { type: string; choices: string[]; describe: string; }; authorName: { type: string; default: string; describe: string; }; }; export default defaultValues;