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