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