export default Checkboxes; /** * Provides a UI component that uses the `Checkbox` component to render the * equivalent of a multi-select without needing to use the `SelectControl` * component. */ declare function Checkboxes({ label, value, options, onChange, }: { label: any; value: any; options: any; onChange: any; }): import("react/jsx-runtime").JSX.Element; declare namespace Checkboxes { namespace propTypes { let label: PropTypes.Validator; let value: PropTypes.Validator<(string | null | undefined)[]>; let options: PropTypes.Validator<(PropTypes.InferProps<{ label: PropTypes.Validator; value: PropTypes.Validator; }> | null | undefined)[]>; let onChange: PropTypes.Validator<(...args: any[]) => any>; } } import PropTypes from 'prop-types'; //# sourceMappingURL=index.d.ts.map