import type { ValuesOf } from '../../Types/ValuesOf'; /** * `CheckType` - The `CheckType` object is used to describe the different types of checkboxes. */ export declare const CheckType: { /** * `bullet` - The bullet type. */ readonly Bullet: "bullet"; /** * `hook` - The hook type. */ readonly Hook: "hook"; /** * `switch` - The switch type. */ readonly Switch: "switch"; }; /** * @public */ export type CheckType = ValuesOf; //# sourceMappingURL=CheckType.d.ts.map