export type Manifest = Record<string, ManifestChunk>;
export interface ManifestChunk {
    file: string;
    src?: string;
    isEntry?: boolean;
    isDynamicEntry?: boolean;
    imports?: string[];
    css?: string[];
    assets?: string[];
}
export declare function getManifest(): Promise<Manifest>;
