import React from 'react'; import './index.less'; export declare type ShortcutsItem = { label: string; value: number | string; style?: React.CSSProperties; onClick?: (item: ShortcutsItem, _next: () => void) => void; render?: (item: ShortcutsItem) => React.ReactNode; disabled?: boolean; }; export interface ShortcutsProps { presets?: ShortcutsItem[]; onChange?: (val: string) => void; disabled?: boolean; size?: 'default' | 'large'; } declare const _default: React.MemoExoticComponent>>; export default _default;