import { ComponentFixture } from '@angular/core/testing';
/**
 * Allows interaction with a SKY UX action button component.
 * @internal
 */
export declare class SkyActionButtonFixture {
    #private;
    /**
     * The action button's current header text.
     */
    get headerText(): string | undefined;
    /**
     * The action button's current details text.
     */
    get detailsText(): string | undefined;
    /**
     * The action button's current icon type.
     */
    get iconType(): string | undefined;
    constructor(fixture: ComponentFixture<any>, skyTestId: string);
    /**
     * Clicks the action button.
     */
    actionClick(): void;
}
