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