import * as React from 'react'; import { Shortcut } from '../../../AdaptableState/ShortcutState'; import { AdaptableApi } from '../../../types'; export declare const isSettingsValid: (data: Shortcut, api: AdaptableApi) => string | true; export declare const ShortcutSettingsSummary: React.FunctionComponent; interface ShortcutSettingsWizardProps { availableKeys: Array; onChange: (shortcut: Shortcut) => void; } export declare const ShortcutSettingsWizard: React.FunctionComponent; export {};