import type { IAnimatableProps } from '../../../Behaviors/Animatable'; import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDimensionableProps } from '../../../Behaviors/Dimensionable'; import type { IElevatableProps } from '../../../Behaviors/Elevatable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { IOverlayElementProps } from '../Abstracts/OverlayElement'; /** * Represents the `IDialogElementProps` interface. * * @public */ export interface IDialogElementProps extends IOverlayElementProps, IDimensionableProps, IElevatableProps, IAppearanceableProps, ISlottableProps, IAnimatableProps { isFullScreen: boolean; isDraggable: boolean; } //# sourceMappingURL=IDialogElementProps.d.ts.map