@dccs/react-autocomplete-mui
Version:
React-Autocomplete without the tears
85 lines (84 loc) • 2.57 kB
TypeScript
/// <reference types="react" />
import { CheckboxProps } from "@material-ui/core/Checkbox";
export interface IFormikCheckboxProps {
name: string;
label?: string;
helperText?: string;
error?: boolean;
formControlLabelProps?: any;
checkBoxProps?: CheckboxProps;
fastFieldProps?: any;
}
export declare function FormikCheckbox(props: IFormikCheckboxProps): JSX.Element;
export declare namespace FormikCheckbox {
var displayName: string;
var __docgenInfo: {
"description": string;
"displayName": string;
"props": {
"name": {
"defaultValue": null;
"description": string;
"name": string;
"required": boolean;
"type": {
"name": string;
};
};
"label": {
"defaultValue": null;
"description": string;
"name": string;
"required": boolean;
"type": {
"name": string;
};
};
"helperText": {
"defaultValue": null;
"description": string;
"name": string;
"required": boolean;
"type": {
"name": string;
};
};
"error": {
"defaultValue": null;
"description": string;
"name": string;
"required": boolean;
"type": {
"name": string;
};
};
"formControlLabelProps": {
"defaultValue": null;
"description": string;
"name": string;
"required": boolean;
"type": {
"name": string;
};
};
"checkBoxProps": {
"defaultValue": null;
"description": string;
"name": string;
"required": boolean;
"type": {
"name": string;
};
};
"fastFieldProps": {
"defaultValue": null;
"description": string;
"name": string;
"required": boolean;
"type": {
"name": string;
};
};
};
};
}