import React from 'react'; declare const useRightItems: (props: { rightItemsStyle?: any; doneText?: string; resetText?: string; }) => ({ value: string; label: React.JSX.Element; disabled: boolean; type: string; style: any; size?: undefined; } | { value: string; label: string; disabled: boolean; type: string; style: any; size?: undefined; } | { value: string; label: string; disabled: boolean; type: string; size: number; style: any; })[]; export default useRightItems;