import type { ComponentID } from '@teambit/component-id'; export declare class MainFileNotFound extends Error { /** * name of the host. */ readonly id: ComponentID; readonly mainFile: string; constructor( /** * name of the host. */ id: ComponentID, mainFile: string); toString(): string; }