import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; /** * Represents the `IBusyStateElementProps` interface. * * @public */ export interface IBusyStateElementProps extends ITextFormattableProps, ISlottableProps { header: string; content: string; } //# sourceMappingURL=IBusyStateElementProps.d.ts.map