import { FunctionComponent, ReactNode } from 'react'; export type ViewMode = "editor" | "output" | "both"; export interface ViewToggleProps { viewMode: ViewMode; onViewModeChange: (mode: ViewMode) => void; /** Additional toolbar actions rendered on the right side of the bar. */ actions?: ReactNode; } export declare const ViewToggle: FunctionComponent; //# sourceMappingURL=view-toggle.d.ts.map