/** A hook that provides the current color mode and a function to set the color mode. */ export declare function useThemePicker(): [ theme: string | undefined, setTheme: (theme?: string) => void ];