declare type Component = { configName: string; configPath: string; configFilePath: string; jsPath: string; axmlPath: string; acssPath: string | undefined; jsonPath: string; }; export default function findComponents(jsonPath: string, projectDir: string, findPath?: Set): Component[]; export {};