import { ComponentProps, FC } from 'react'; type Props = { dimensions?: 16 | 24 | 32 | 48 | 64 | 96; rounded?: boolean; square?: boolean; ratio?: string; }; export declare const Image: FC, keyof Props> & Props>; export {};