import { ArtStatus } from './special-types'; import { XMLElement } from './utils'; export interface Art { readonly status: ArtStatus; readonly url: string; } export declare function artFromElement(element: XMLElement): Art | undefined;