import * as React from 'react';
export interface Props {
    src: string;
    alt?: string;
    width?: number;
    height?: number;
    caption?: string;
    retinaFactor?: number;
    noPadding?: boolean;
}
declare const Screenshot: React.FC<Props>;
export default Screenshot;
