import type { Ref } from '@stacksjs/stx'; /** * Inject a style tag into the document head. */ export declare function useStyleTag(initialCss: string, options?: UseStyleTagOptions): UseStyleTagReturn; export declare interface UseStyleTagOptions { immediate?: boolean id?: string media?: string } export declare interface UseStyleTagReturn { id: string css: Ref load: () => void unload: () => void isLoaded: Ref }