import * as React from 'react';
import { TrayState } from '../../common/reducers';
export interface CadPanelProps {
    state: TrayState;
    setSelectedTray: (s: string) => any;
}
export declare const CADPanel: React.ComponentClass<{}>;
