import { Typeform } from './typeform-types'; export declare class Images { private _http; constructor(_http: Typeform.HTTPClient); add(args: { image?: string; url?: string; fileName: string; }): Promise; delete(args: { id: string; }): Promise; get(args: { id: string; size?: string; backgroundSize?: string; choiceSize?: string; }): Promise; list(): Promise; }