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<HTMLDivElement | null>, { className, selector }: {
    className: string;
    selector: string;
}): {
    ref: React.Ref<HTMLDivElement | null>;
};

export { useDialogOverlayHack };
