import * as React from 'react';
import * as makerjs from 'makerjs';
import { OptionState } from './store/state';
export declare type Props = {
    model: makerjs.IModel | string;
    options?: Partial<OptionState>;
};
declare const Main: React.FunctionComponent<Props>;
export default Main;
