type Constructor = new (...args: any[]) => T; /** Interface to implement when applying the disabled mixin */ export interface ICanDisableRipple { disableRipple: boolean; onDisableRippleChange(v: boolean): void; } /** Mixin to augment a component or directive with a `disabled` property. */ export declare function mixinDisableRipple>>(base: T): Constructor & T; export {};