export type ErrorType = "empty-results" | "server-error" | "wrong-aspect-ratio" | "wrong-format" | "heic-not-supported"; export interface ErrorTypeConfig { i18nKey: string; } export declare const errorTypeConfig: Record;