import type { IThemeableProps } from '../../../Behaviors/Themeable'; import type { CssLength } from '@breadstone/mosaik-themes'; /** * Represents the `IAbsoluteItemElementProps` interface. * * @public */ export interface IAbsoluteItemElementProps extends IThemeableProps { left: CssLength | null | undefined; top: CssLength | null | undefined; bottom: CssLength | null | undefined; right: CssLength | null | undefined; } //# sourceMappingURL=IAbsoluteItemElementProps.d.ts.map