/** * Adds a style block to the head to load the styles. * uses the suffix to scope the styles * @param {string} css css code to add the the head * @param {string} suffix string to add to each selector as a scoped style to avoid conflicts * @returns a function that discard the added style element (if there is one) */ export default function addScopedStyle(css: string, suffix: string): () => void; //# sourceMappingURL=addScopedStyle.d.ts.map