import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type ArrowParts = { arrow: ''; }; declare type ArrowDOMProps = React.ComponentPropsWithRef<'svg'>; declare type ArrowStyleConfigProp = { styleConfig?: StyleConfig; }; declare type ArrowSystemProps = BoxSystemProps; export declare type ArrowProps = ArrowDOMProps & ArrowStyleConfigProp & ArrowSystemProps & { as?: React.ElementType; }; export declare const Arrow: React.ForwardRefExoticComponent & React.RefAttributes>; export {};