export interface ImageParams { size?: number; prefix?: 'https' | 'http'; hq?: boolean; format?: string; domain?: 'prod' | 'test'; } declare const _default: { getImageUrl(sImgId: string, params?: ImageParams): string; }; export default _default;