import { IllustrationAsset, BaseSvgAsset } from './types.js';
export type CheckboxAsset = IllustrationAsset<BaseSvgAsset & {
    readonly name: 'Checkbox';
}>;
/**
 * Checkbox illustration asset
 * @example
 * ```tsx
 * import { Illustration } from '@payfit/unity-illustrations'
 * import Checkbox from '@payfit/unity-illustrations/assets/Checkbox'
 *
 * <Illustration
 *   illustration={Checkbox}
 *   alt="Checkbox illustration"
 *   size="md"
 * />
 * ```
 */
declare const Checkbox: CheckboxAsset;
export default Checkbox;
