import { DiagnosticHandler } from './diagnostics';
export default function findEntryPoint(possibilities: string[], options: {
    notFoundIsFatal?: boolean;
    component: string;
    onDiagnostic: DiagnosticHandler;
}): string | undefined;
