import type { BaseConstructor } from '../Base/index.js'; /** * Import a component when given media query is true. * * @template {BaseConstructor} T * @param {() => Promise} fn * The import function. * @param {string} media * The media query name and value (see https://developer.mozilla.org/en-US/docs/Web/CSS/@media#media_features) * @return {Promise} * @link https://js-toolkit.studiometa.dev/api/helpers/importOnMediaQuery.html */ export declare function importOnMediaQuery(fn: () => Promise, media: string): Promise;