import type { IBusyableProps } from '../../Behaviors/Busyable'; import type { ISlottableProps } from '../../Behaviors/Slottable'; /** * Represents the `IAppHeaderElementProps` interface. * * @public */ export interface IAppHeaderElementProps extends ISlottableProps, IBusyableProps { isToggled: boolean; scrollTargetFn: (() => Element | null) | null; } //# sourceMappingURL=IAppHeaderElementProps.d.ts.map