@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
14 lines • 494 B
TypeScript
import * as React from 'react';
/**
* @internal
*/
export declare const InternalBackdrop: React.ForwardRefExoticComponent<InternalBackdrop.Props & React.RefAttributes<HTMLDivElement>>;
export declare namespace InternalBackdrop {
interface Props extends React.HTMLAttributes<HTMLDivElement> {
/**
* The element to cut out of the backdrop.
* This is useful for allowing certain elements to be interactive while the backdrop is present.
*/
cutout?: Element | null;
}
}