import { type ComponentType } from 'react';
import { type AppProps } from './types.js';
export default function readCustomApp(directory: string): Promise<ComponentType<AppProps> | undefined>;
