import { ComponentProps } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "div"; export interface InnerOverlayArrowProps extends InternalProps, StyledComponentProps { } export declare function InnerOverlayArrow({ as, forwardedRef, ...rest }: InnerOverlayArrowProps): JSX.Element; export declare namespace InnerOverlayArrow { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/overlay--page) */ export declare const OverlayArrow: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type OverlayArrowProps = ComponentProps; export {};