import React from 'react';
import type { HTMLProps } from '../utils/utilityTypes';
import type { BaseImagePreviewProps } from './interface';
export interface ImagePreviewCssVars {
'--footer-padding'?: React.CSSProperties['padding'];
'--pagination-text-color'?: React.CSSProperties['color'];
'--pagination-font-size'?: React.CSSProperties['fontSize'];
}
export declare type ImagePreviewProps = BaseImagePreviewProps & HTMLProps;
declare const ImagePreview: React.ForwardRefExoticComponent & React.RefAttributes>;
export default ImagePreview;