import { Config } from '../../model/config';
export declare class DiscoveryCodeImageResult {
    theme: 'light' | 'dark';
    config: Config | string;
    debug: boolean;
    result: string | any[];
    loading: boolean;
    imageList: string[];
    innerResult: any[];
    innerTheme: string;
    innerConfig: Config;
    private LOG;
    constructor();
    setDebug(newValue: boolean): void;
    setTheme(newValue: string): void;
    setResult(newValue: string | any[]): void;
    componentWillLoad(): void;
    isArray(arr: any): boolean;
    render(): any;
}
