import { HarnessPredicate } from '@angular/cdk/testing';
import { SkyComponentHarness } from '@skyux/core/testing';
import { SkyIllustrationSize } from '@skyux/indicators';
import { SkyIllustrationHarnessFilters } from './illustration-harness-filters';
/**
 * Harness for interacting with an illustration component in tests.
 */
export declare class SkyIllustrationHarness extends SkyComponentHarness {
    #private;
    /**
     * @internal
     */
    static hostSelector: string;
    /**
     * Gets a `HarnessPredicate` that can be used to search for a
     * `SkyIllustrationHarness` that meets certain criteria.
     */
    static with(filters: SkyIllustrationHarnessFilters): HarnessPredicate<SkyIllustrationHarness>;
    /**
     * Gets the specified name of the illustration.
     */
    getName(): Promise<string>;
    /**
     * Gets the specified size of the illustration.
     */
    getSize(): Promise<SkyIllustrationSize>;
}
