export interface Options {
    query: string;
    limit: number;
    filter?: (image: Image) => boolean;
    imageOptions?: object;
    outputPath?: string;
    debug: boolean;
}
export interface Image {
    image: string;
}
export interface ImageResponse {
    results: Image[];
    next: string;
}
export declare const Size: string[];
export declare const Type: string[];
export declare const Layout: string[];
export declare const Color: string[];
