import type { AssetsManifest } from '@microeinhundert/radonis-types'; import { AssetType } from '@microeinhundert/radonis-types'; /** * Get the entry points for the given location */ export declare function getEntryPoints(location: string): Promise; /** * Read the assets manifest from disk */ export declare function readAssetsManifestFromDisk(location: string): Promise; /** * Write the assets manifest to disk */ export declare function writeAssetsManifestToDisk(assetsManifest: AssetsManifest, location: string): Promise; /** * Extract tokens from a haystack */ export declare function extractTokens(haystack: string): string[]; /** * Check if a string is a valid asset type */ export declare function isAssetType(value: string): value is AssetType; /** * Get the meta information for a given output */ export declare function getOutputMeta(output: { entryPoint?: string; }): { type: AssetType; originalPath: string; }; //# sourceMappingURL=utils.d.ts.map