import type { IAnimatableProps } from '../../../Behaviors/Animatable'; import type { IBusyableProps } from '../../../Behaviors/Busyable'; import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { ToastPosition } from '../../../Types/ToastPosition'; import type { IOverlayElementProps } from '../Abstracts/OverlayElement'; /** * Represents the `IToastElementProps` interface. * * @public */ export interface IToastElementProps extends IOverlayElementProps, IVariantableProps, ITextFormattableProps, IBusyableProps, IAnimatableProps { header: string; content: string; timeout: number; position: ToastPosition; showProgress: boolean; } //# sourceMappingURL=IToastElementProps.d.ts.map