import { FC } from 'react'; export interface ArrowProps { readonly expanded: boolean; readonly disabled: boolean; } export declare const Arrow: FC;