export interface GetThemeStatusProps { /** * The ID of the specific element to check. * Useful if your builder canvas is isolated from the main app UI. */ targetId?: string; /** * The class name used to identify dark mode (default: 'dark') */ darkClassName?: string; /** * The fallback theme if running on the server */ fallback?: 'light' | 'dark'; } export default function GetThemeStatus({ targetId, darkClassName, fallback }?: GetThemeStatusProps): 'light' | 'dark';