import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { CheckType } from '../../../Types/CheckType'; /** * Represents the `ICheckmarkElementProps` interface. * * @public */ export interface ICheckmarkElementProps extends IAppearanceableProps, IVariantableProps, IDisableableProps { checked: boolean | null; type: CheckType | null; isThreeState: boolean; } //# sourceMappingURL=ICheckmarkElementProps.d.ts.map