import { Component } from '../Core';
export declare class ImportOsb extends Component {
    name: string;
    private _osb;
    /**
     * Import existing osb file. Useful if you are doing collab with people using different develop platforms like storybrew, sgl etc.
     * @param osbPath Full path to .osb file.
     */
    constructor(osbPath: string);
    generate(): void;
}
