import { Component, cdk } from 'projen'; export interface RosettaOptions { /** * Enable or disable strict mode. * * @default true */ readonly strict?: boolean; /** * Set an explicit version of rosetta. * * @default - no version is set, use automatic detection */ readonly version?: string; } /** * The Rosetta component adds builtin rosetta support * for a construct library. Since ConstructHub will run * rosetta for real, this just adds a check to the build to * ensure that rosetta will run successfully */ export declare class Rosetta extends Component { constructor(project: cdk.JsiiProject, options?: RosettaOptions); }