import { InjectionToken, WritableSignal } from '@angular/core';
import { AlertType } from '../../../core/models/alert.model';
export declare namespace TccMessagePopoverToken {
    interface data {
        message: string;
        type?: AlertType;
    }
    type signalData = WritableSignal<data>;
}
export declare const TCC_MESSAGE_POPOVER_DATA: InjectionToken<TccMessagePopoverToken.signalData>;
