import * as React from 'react'; /** * HACK: Radix themes does not expose the dialog overlay, but we want consumer * to be able to style it with a classname. This will add a classname to the * overlay when the dialog content is mounted. */ declare function useDialogOverlayHack(forwardedRef: React.Ref, { className, selector }: { className: string; selector: string; }): { ref: React.Ref; }; export { useDialogOverlayHack };