import { FileTypes } from './instance'; import { Modes } from './options'; export declare type ComponentContentFunc = (componentName: string, mode: Modes, styleFile?: string) => string; export declare type ContentFunc = (componentName: string) => string; export declare type StyleContentFunc = () => null; export declare type GeneratorCallerFunc = (type: FileTypes) => string | null; export declare type ContentGenerator = Record;