import type { HTMLAttributes } from 'react';
export type CheckboxProps = HTMLAttributes & {
checked?: boolean;
};
export declare const Checkbox: ({ checked, ...props }: CheckboxProps) => import("react/jsx-runtime").JSX.Element;
export type CheckmarkProps = CheckboxProps;
export declare const Checkmark: ({ checked, ...props }: CheckboxProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Checkbox.d.ts.map