import type { WebContainer } from '@webcontainer/api'; /** * Read the entities (directories and files) within a directory in the web container. * The returned list is sorted by type (directories first then files) then alphabetically. * @param container * @param path */ export declare const readDirEnts: (container: WebContainer, path: string) => Promise[]>;