import { ElementRef } from '@angular/core';
export declare class MDCComponent<FoundationType extends any> {
    protected _elementRef: ElementRef;
    protected _foundation: FoundationType;
    constructor(elementRef: ElementRef, foundation?: FoundationType, ...args: Array<unknown>);
    initialize(..._args: Array<unknown>): void;
    getDefaultFoundation(): FoundationType;
    destroy(): void;
}
