import { Plugin } from '../../lib/plugin'; /** * NewAnswers */ export interface NewAnswers { name: string; template: string; } export interface NewOptions { template: string; cache: boolean; force: boolean; } declare const _default: (api: Plugin) => void; export default _default;