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