import React from 'react'; import { ShortcutOption } from '../../util'; interface RecentListProps { list: ShortcutOption[]; curShortcut: ShortcutOption; disabledShortcutOptions?: { value: string; popoverContent?: React.ReactNode; }[]; postbackDates: (shortcut: ShortcutOption) => void; } declare const ShortcutList: (props: RecentListProps) => JSX.Element; export default ShortcutList;