import * as React from "react"; export interface UpDownButtonsProps { onClickUp?: () => void; onClickDown?: () => void; iconColor?: string; disabled?: boolean; } export declare const UpDownButtons: React.FC;