import { UseFloatingUIProps } from "@jpmorganchase/uitk-core"; import { ComponentProps, ComponentPropsWithoutRef } from "react"; import "./Overlay.css"; interface ADAExceptions { showClose?: boolean; } export interface OverlayProps extends ComponentPropsWithoutRef<"div">, Partial> { /** * object that houses ada related props. * adaExceptions.showClose defaults to true. It can be removed at the risk of ADA compliance */ adaExceptions?: ADAExceptions; arrowProps?: ComponentProps<"div">; variant?: "primary" | "secondary"; } export declare const Overlay: import("react").ForwardRefExoticComponent>; export {};