import type { Local } from '../domain/local'; import type { Logger } from '../logger'; declare const init: ({ local, logger }: { local: Local; logger: Logger; }) => { (opts: { componentName: string; componentPath: string; templateType: string; }): Promise; (opts: { componentName: string; componentPath: string; templateType: string; }, arguments__1: (error: unknown, value: string) => void): void; }; export default init;