import { IDisableableProps } from '../../../Behaviors/Disableable'; import { ISizeableProps } from '../../../Behaviors/Sizeable'; import { IVariantableProps } from '../../../Behaviors/Variantable'; import type { DotFill } from '../../../Types/DotFill'; /** * Represents the `IDotElementProps` interface. * * @public */ export interface IDotElementProps extends IDisableableProps, IVariantableProps, ISizeableProps { fill: DotFill; } /** * @public */ export declare namespace IDotElementProps { const DEFAULTS: IDotElementProps; } //# sourceMappingURL=IDotElementProps.d.ts.map