import type { IDimensionableProps } from '../../../Behaviors/Dimensionable'; import type { IFitableProps } from '../../../Behaviors/Fitable'; import type { IInsetableProps } from '../../../Behaviors/Insetable'; /** * Represents the `IBoxElementProps` interface. * * @public */ export interface IBoxElementProps extends IFitableProps, IDimensionableProps, IInsetableProps { highlighted: boolean; cornered: boolean; } //# sourceMappingURL=IBoxElementProps.d.ts.map