import type { ValuesOf } from '../../Types/ValuesOf'; /** * `DotFill` - The `DotFill` object is used to describe the different types of fill states. * * @public */ export declare const DotFill: { /** * `empty` - No fill, only border/outline. */ readonly Empty: "empty"; /** * `half` - Half-filled from left to right. */ readonly Half: "half"; /** * `full` - Completely filled. * @default */ readonly Full: "full"; }; /** * @public */ export type DotFill = ValuesOf; //# sourceMappingURL=DotFill.d.ts.map