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