import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { InkBarPosition } from '../../../Types/InkBarPosition'; /** * Represents the `IInkBarElementProps` interface. * * @public */ export interface IInkBarElementProps extends IVariantableProps, IAppearanceableProps, IDisableableProps { /** * The target element. */ target: HTMLElement | null; /** * The position of the ink bar. */ position: InkBarPosition; } //# sourceMappingURL=IInkBarElementProps.d.ts.map