import type { IThemeableProps } from '../../../../Behaviors/Themeable'; /** * Represents frame bounds configuration. * * @public */ export interface IDesignerFrameBounds { readonly top: number; readonly right: number; readonly bottom: number; readonly left: number; } /** * Represents the `IDesignerFrameElementProps` interface. * * @public */ export interface IDesignerFrameElementProps extends IThemeableProps { /** * Defines inner frame-local bounds such as safe margins or print bounds. */ bounds: IDesignerFrameBounds | null; /** * Controls visible rendering of configured bounds. */ showBounds: boolean; } //# sourceMappingURL=IDesignerFrameElementProps.d.ts.map