import { EventEmitter } from '@angular/core'; /** * Layout component that displays the different supported version of a generator * and the code snippet for each version. * * @author Will Davis */ export declare class RdsVersionedCodeSnippetsComponent { /** Wether the lines of code are loading */ loading: boolean; /** The lines of code that make up the code snippet */ loc: string[]; /** The selected version */ selected: string; /** All the versions for the given library */ versions: string[]; /** Emitted when a version is selected */ selectionChange: EventEmitter; }