import { ElementRef } from "@angular/core";
import { CanDisable, CanColor, ThemePalette } from "@angular/material";
import { Constructor } from "@angular/material/typings/core/common-behaviors/constructor";
/** @docs-private */
export declare class XmatActionTextBase {
    _elementRef: ElementRef;
    constructor(_elementRef: ElementRef);
}
export declare const _XmatActionMixinBase: Constructor<CanColor> & typeof XmatActionTextBase;
export declare class XmatActionTextDirective extends _XmatActionMixinBase implements CanColor, CanDisable {
    _elementRef: ElementRef;
    color: ThemePalette;
    disabled: boolean;
    constructor(_elementRef: ElementRef);
}
