Files
starface-outlook-sync-addin/node_modules/@fluentui/utilities/lib/FocusRectsProvider.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

14 lines
478 B
TypeScript

import * as React from 'react';
export type FocusRectsProviderProps = {
/**
* Ref to the root element that this is providing focus rects for.
*/
providerRef: React.RefObject<HTMLElement | null>;
/**
* Indicates that this is the root of a layer, and should not inherit the providerRef from a parent context.
*/
layerRoot?: boolean;
children?: React.ReactNode;
};
export declare const FocusRectsProvider: React.FC<FocusRectsProviderProps>;