import React from "react"; import type { CheckboxPrimitiveProps } from "./primitives/index.js"; import type { FormComponentProps } from "../FormComponent/index.js"; type CheckboxProps = CheckboxPrimitiveProps & FormComponentProps; declare const Checkbox: (({ description, note, validation, ...props }: CheckboxProps) => React.JSX.Element) & { original: ({ description, note, validation, ...props }: CheckboxProps) => React.JSX.Element; originalName: string; displayName: string; } & { original: (({ description, note, validation, ...props }: CheckboxProps) => React.JSX.Element) & { original: ({ description, note, validation, ...props }: CheckboxProps) => React.JSX.Element; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/react-composition/types.js").ComponentDecorator<(({ description, note, validation, ...props }: CheckboxProps) => React.JSX.Element) & { original: ({ description, note, validation, ...props }: CheckboxProps) => React.JSX.Element; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; }; export { Checkbox };