export type Checkbox_StyleProps = {
/** ## Checkbox
*
* The `z-checkbox` attribute setted to `default` will inject the z-checkbox styling
* for `type="checkbox"` inputs
*
*
* ---
* ### Attributes:
*
* - `disabled`: _( boolean )_ blocks the interaction with the component.
* - `checked`: _( boolean )_ sets the checkbox as checked.
*
* ---
* ### Examples:
* - `default`:
* ```html
*
* ```
* 
*
* - `checked`:
* ```html
*
* ```
* 
*
* ---
* ### References:
* - #### [ Documentation](./atoms/checkbox)
*/
'z-checkbox'?: true | '';
};