import type { ITheme } from '@breadstone/mosaik-themes'; import type { ISlottable } from '../../Behaviors/Slottable'; /** * Represents the `IAppElementProps` interface. * * @public */ export interface IAppElementProps extends ISlottable { theme: ITheme | null; isNavOpen: boolean; isMobile: boolean; hasHeader: boolean; hasNav: boolean; } //# sourceMappingURL=IAppElementProps.d.ts.map