import type { IThemeableProps } from '../../../Behaviors/Themeable'; /** * Represents the `IRegionViewElementProps` interface. * * @public */ export interface IRegionViewElementProps extends IThemeableProps { /** * The unique name identifier for this view within a region. */ name: string; /** * Whether this view is the default active view in the region. */ default: boolean; /** * Whether this view is currently active (visible). */ active: boolean; } //# sourceMappingURL=IRegionViewElementProps2.d.ts.map