import type { CssLoaderProperty } from '../types/utils.js'; /** * Loads plain CSS from a manifest's `css` property. * @template {string} CssType * @param {CssLoaderProperty} property The manifest property to load the CSS from. * @returns {Promise} The resolved CSS string, if found. */ export declare function loadManifestPlainCss(property: CssLoaderProperty): Promise;