import type { IInsetableProps } from '../../../Behaviors/Insetable'; import { ISlottableProps } from '../../../Behaviors/Slottable'; /** * Represents the `IPageHeaderElementProps` interface. * * @public */ export interface IPageHeaderElementProps extends IInsetableProps, ISlottableProps { text: string; subText?: string | null; additionalText?: string | null; } //# sourceMappingURL=IPageHeaderElementProps.d.ts.map