// Type definitions for spotlight/SpotlightRootDecorator type Omit = Pick>; type Merge = Omit> & N; export interface SpotlightRootDecoratorConfig extends Object { /** * When `true` , the contents of the component will not receive spotlight focus after being rendered. */ noAutoFocus?: boolean; /** * Specifies the id of the React DOM tree root node */ rootId?: string; } export interface SpotlightRootDecoratorProps {} export function SpotlightRootDecorator

( config: SpotlightRootDecoratorConfig, Component: React.ComponentType

| string, ): React.ComponentType

; export function SpotlightRootDecorator

( Component: React.ComponentType

| string, ): React.ComponentType

; export default SpotlightRootDecorator;