import type { Ref } from '@stacksjs/stx'; /** * Reactive preferred color scheme. */ export declare function usePreferredColorScheme(): Ref; export type ColorSchemeType = 'dark' | 'light' | 'no-preference';