/** * Setups an element synchronously from the provided string template and puts it in the DOM. * Allows to specify properties via an object or a function taking the element as an argument. * * @template {Element} T - Is an element or a node * @param {string} template * @param {import('./fixture-no-side-effect.js').FixtureOptions} [options={}] * @returns {T} */ export function stringFixtureSync(template: string, options?: import('./fixture-no-side-effect.js').FixtureOptions): T; /** * Setups an element asynchronously from the provided string template and puts it in the DOM. * Allows to specify properties via an object or a function taking the element as an argument. * * @template {Element} T - Is an element or a node * @param {string} template * @param {import('./fixture-no-side-effect.js').FixtureOptions} [options] * @returns {Promise} */ export function stringFixture(template: string, options?: import('./fixture-no-side-effect.js').FixtureOptions): Promise; //# sourceMappingURL=stringFixture.d.ts.map