import { IModel } from '@accordproject/concerto-metamodel';
/**
 * Converts a metamodel instance to a CTO string
 *
 * @param {*} metaModel - the metamodel instance
 * @return {string} the CTO model as a string
 */
declare function toCTO(metaModel: IModel): string;
declare const _default: {
    toCTO: typeof toCTO;
};
export = _default;
