import React from 'react'; export declare type ProImageProps = { src: { /** 中文亮色图片地址,默认 url */ 'cn-light': string; /** 英文文亮色图片地址 */ 'en-light'?: string; /** 繁体亮色图片地址 */ 'tw-light'?: string; /** 中文暗色图片地址 */ 'cn-dark'?: string; /** 英文暗色图片地址 */ 'en-dark'?: string; /** 繁体暗色图片地址 */ 'tw-dark'?: string; } & Record; theme?: 'dark' | 'light'; /** 自定义改造 url 的函数 */ transformUrl?: (value: string) => string; } & React.DetailedHTMLProps, HTMLImageElement>; declare const _default: (props: ProImageProps) => JSX.Element | null; export default _default;