import { ComponentProps } from "react"; import { InternalProps, OmitInternalProps, SlotProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "svg"; export interface InnerDisclosureArrowProps extends SlotProps, InternalProps, StyledComponentProps { /** * A controlled open value that determined whether or not the arrow is up or down. */ open?: boolean; } export declare function InnerDisclosureArrow({ forwardedRef, open, ...rest }: InnerDisclosureArrowProps): JSX.Element; export declare namespace InnerDisclosureArrow { var defaultElement: string; } /** * A top / bottom pointing arrow to hint that activating the trigger will display additional content. * * [Documentation](https://orbit.sharegate.design/?path=/docs/disclosure-arrow--context) */ export declare const DisclosureArrow: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type DisclosureArrowProps = ComponentProps; export {};