import React from 'react'; import { components } from '../../client/apiSchema.generated'; type KeyInScreenshotModel = components['schemas']['KeyInScreenshotModel']; export type ScreenshotProps = { src: string; width: number | undefined; height: number | undefined; keyReferences?: KeyInScreenshotModel[]; highlightedKeyId: number; }; type Props = { className?: string; screenshot: ScreenshotProps; showTooltips?: boolean; }; export declare const ScreenshotWithLabels: React.FC; export {};