import { LifeCycleFn } from "single-spa"; export default function singleSpaCss(_opts: SingleSpaCssOpts): CSSLifecycles; type SingleSpaCssOpts = { cssUrls: CssUrl[]; webpackExtractedCss?: boolean; timeout?: number; shouldUnmount?: boolean; createLink?: (url: string) => HTMLLinkElement; }; type CssUrl = string | { href: string; shouldUnmount: boolean; }; type CSSLifecycles = { bootstrap: LifeCycleFn; mount: LifeCycleFn; unmount: LifeCycleFn; }; export {};