import { Tree } from '@nx/devkit';
export interface ComponentSchema {
    name: string;
    project: string;
    directory?: string;
    style?: string;
    skipFormat?: boolean;
}
export declare function componentGenerator(host: Tree, options: ComponentSchema): Promise<void>;
export default componentGenerator;
