import { CompilerOptions } from '@typespec/compiler'; import { FunctionComponent } from 'react'; import { BrowserHost } from '../../types.js'; export interface CompilerSettingsProps { readonly host: BrowserHost; readonly selectedEmitter: string; readonly onSelectedEmitterChange: (emitter: string) => void; readonly options: CompilerOptions; readonly onOptionsChanged: (options: CompilerOptions) => void; } export declare const CompilerSettings: FunctionComponent; //# sourceMappingURL=compiler-settings.d.ts.map