import { AppInstance } from './interface'; interface createScopedCssText { styleNode: HTMLStyleElement; prefix: string; } export declare function createScopedCssText({ styleNode, prefix }: createScopedCssText): string; interface ILoaderStyleProps { style: string; prefix: string; styleNode: HTMLStyleElement; } export declare function LoaderStyle({ style, prefix, styleNode }: ILoaderStyleProps): Promise; interface ILoaderModuleProps { script: string; style: string; prefix: string; styleNode: HTMLStyleElement; } export default function LoaderModule({ script, style, prefix, styleNode }: ILoaderModuleProps): Promise; export {};