import React from 'react';
/**
 * __Checkbox icon__
 *
 * Used to visually represent the selected state in DropdownItemCheckbox
 *
 * @internal
 */
declare const CheckboxIcon: ({ checked }: {
    checked: boolean;
}) => React.JSX.Element;
export default CheckboxIcon;
