export interface ImportCssProps { href: string; selector?: string; } export declare function createLinkElement(selector?: string): HTMLLinkElement; export declare function ImportCss({ href, selector }: ImportCssProps): null;