export declare type AqicnData = { attributions?: { name?: string; url?: string; }[]; city: { geo?: [string | number, string | number]; name?: string; url?: string; }; dominentpol?: string; iaqi?: { [key: string]: { v: number; }; }; idx: number; time: { s?: string; tz?: string; v: number; iso?: string; }; }; export declare type AqicnResponse = { data?: AqicnData | string; msg?: string; status: 'ok' | 'error' | 'nope'; };