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