import { Tree } from '@nx/devkit'; export interface PreactComponentSchema { name: string; project: string; directory?: string; unitTestRunner: 'jest' | 'none'; } export declare function componentGenerator(tree: Tree, options: PreactComponentSchema): Promise; export default componentGenerator;