import React, { PropsWithChildren } from "react"; export type ScrimProps = PropsWithChildren<{ /** * A boolean value indicating whether or not the scrim should be open. */ isOpen: boolean; /** * A callback method invoked when a user presses the scrim surface. */ onPress?: () => void; }>; export declare const Scrim: ({ isOpen, onPress, children }: ScrimProps) => React.JSX.Element | null;