import type { CheckboxProps } from '../../Checkbox'; import type { ConsentPolicy } from '../shared'; export interface ConsentCheckboxProps extends Omit { /** * The policy for which user consent is being collected for. * * `sms-marketing`: Represents the policy for SMS marketing consent. */ policy?: ConsentPolicy; }