/**
 * Copyright IBM Corp. 2021, 2025
 * SPDX-License-Identifier: MPL-2.0
 */
import type { TemplateOnlyComponent } from '@ember/component/template-only';
import type { HdsAlertSignature } from '../alert/index';
export interface HdsToastSignature extends Omit<HdsAlertSignature, 'Args'> {
    Args: Omit<HdsAlertSignature['Args'], 'type'>;
}
declare const HdsToast: TemplateOnlyComponent<HdsToastSignature>;
export default HdsToast;
