import { IConcept, ITechnology, Source, Technology, TemplateSchema } from 'kodyfire-core'; import { Engine } from './engine'; export declare class Concept implements IConcept { name: string; defaultAction: string; source?: Source | undefined; template: TemplateSchema; outputDir: string; technology: Technology; engine: Engine; constructor(concept: Partial, technology: ITechnology); generate(_data: any): void; underscorize(word: any): any; } //# sourceMappingURL=concept.d.ts.map