interface CreateOptions { template?: string; targetDir?: string; } declare function createExtension(projectNameInput: string | undefined, { template }: CreateOptions): Promise; export { type CreateOptions, createExtension as default };