import * as React from 'react'; interface IOptions { type?: string; hotkey?: string; tip?: React.ReactNode; [key: string]: any; } declare const DEFAULT_OPTIONS: IOptions; export default DEFAULT_OPTIONS; export { IOptions, DEFAULT_OPTIONS };