import type { BaseProps } from "@stratakit/foundations/secret-internals";
interface DisclosureArrowProps extends Omit<BaseProps<"svg">, "children"> {
    /**
     * Which direction should the arrow point towards?
     * @default "down"
     */
    direction?: "down" | "right";
}
export declare const DisclosureArrow: import("react").ForwardRefExoticComponent<DisclosureArrowProps & import("react").RefAttributes<HTMLElement | SVGSVGElement>>;
export {};
