import React, { CSSProperties } from 'react'; import './styles.scss'; export interface ImageProps { file?: string | [string, string]; alt?: string; className?: string; style?: CSSProperties; title?: string | JSX.Element; sub?: string | JSX.Element; source?: string | JSX.Element; aspectRatio?: string; height?: string | [string, string]; oversized?: boolean; children?: JSX.Element; imageFirst?: boolean; props?: any; [key: string]: any; } export declare const Image: ({ file, alt, className, style, title, sub, source, height, aspectRatio, oversized, children, imageFirst, ...props }: ImageProps) => React.JSX.Element; //# sourceMappingURL=component.d.ts.map