import { SkyComponentHarness } from '@skyux/core/testing';
/**
 * Harness for interacting with a chevron component in tests.
 * @internal
 */
export declare class SkyChevronHarness extends SkyComponentHarness {
    #private;
    /**
     * @internal
     */
    static hostSelector: string;
    /**
     * Gets the chevron direction.
     */
    getDirection(): Promise<string>;
    /**
     * Whether the chevron is disabled.
     */
    isDisabled(): Promise<boolean>;
    /**
     * Toggles the chevron.
     */
    toggle(): Promise<void>;
}
