/// import { Style } from "@react-pdf/types"; interface ImageProps { ratio?: number; src: string; style?: Style; } export declare const Image: ({ ratio, src, style: { width, height, ...rest }, }: ImageProps) => JSX.Element; export {};