import * as React from 'react';
import { AdaptableOnePageWizardProps } from '../../../View/Wizard/Interface/IAdaptableWizard';
import { Shortcut } from '../../../AdaptableState/ShortcutState';
export interface ShortcutWizardProps extends AdaptableOnePageWizardProps<Shortcut> {
    availableKeys: string[];
}
export declare const ShortcutWizard: React.FunctionComponent<ShortcutWizardProps>;
