import { FormControlProps } from "@mongez/react-form"; import React from "react"; export type CheckboxInputOptions = { otherProps?: (otherProps: any, props: any) => any; getStateChange?: (e: any) => any; inputColor?: (theme: any) => string; multiple?: boolean; }; export declare function withCheckboxInput(Component: React.FC, incomingOptions?: CheckboxInputOptions): any; //# sourceMappingURL=withCheckboxInput.d.ts.map