/**
 * OSのカラースキーム設定を検出するフック
 * prefers-color-schemeメディアクエリを監視し、変更を検知する
 *
 * @returns 'light' | 'dark' - 現在のシステムカラースキーム
 *
 * @example
 * ```tsx
 * function Component() {
 *   const systemScheme = useSystemColorScheme();
 *   // systemScheme は 'light' または 'dark'
 * }
 * ```
 */
export declare function useSystemColorScheme(): "light" | "dark";
