import { ComponentHarness } from '@angular/cdk/testing';
/**
 * Harness for interacting with a text expand modal component in tests.
 */
export declare class SkyTextExpandModalHarness extends ComponentHarness {
    #private;
    /**
     * @internal
     */
    static hostSelector: string;
    /**
     * Clicks the modal close button.
     */
    clickCloseButton(): Promise<void>;
    /**
     * Gets the modal title.
     */
    getExpandModalTitle(): Promise<string>;
    /**
     * Gets the expanded text in the modal.
     */
    getText(): Promise<string>;
}
