import { ComponentPropsWithoutRef } from 'react'; /** * Props for the DetailsArrow component * @extends ComponentPropsWithoutRef<"span"> */ export type DetailsArrowProps = ComponentPropsWithoutRef<"span">; /** * DetailsArrow component for the animated arrow indicator in DetailsSummary. * * Features: * - Animated chevron icon that rotates on expand/collapse * - Automatically reflects the current expanded state * - Uses consistent icon sizing and styling * - Smooth transition animations * - Accessible with proper ARIA context * * @example * */ export declare const DetailsArrow: import('react').ForwardRefExoticComponent, HTMLSpanElement>, "ref"> & import('react').RefAttributes>;