import type { ValuesOf } from '../../Types/ValuesOf'; /** * `Size` - The `Size` object is used to describe the different types of sizes. * * @public */ export declare const Size: { /** * `tiny` - The small size set option. */ readonly Tiny: "tiny"; /** * `small` - The small size set option. */ readonly Small: "small"; /** * `medium` -The medium size set option. * @default */ readonly Medium: "medium"; /** * `large` - The large size set option. */ readonly Large: "large"; /** * `giant` - The giant size set option. */ readonly Giant: "giant"; }; /** * @public */ export type Size = ValuesOf; /** * Checks if the given value is a valid `Size`. * * @public * @param value - The value to check. * @returns `true` if the value is a valid `Size`, otherwise `false`. */ export declare function isSize(value: unknown): value is Size; //# sourceMappingURL=Size.d.ts.map