import type { WordPressComponentProps } from '@wordpress/components/build-types/context'; import type { MultiCheckboxControlProps } from './types'; import './style.scss'; /** * Renders a multi-checkbox control. * * To group the checkboxes properly, they are wrapped in a fieldset element, where the overall label is used as legend. * Optionally, a search input can be rendered to filter which checkboxes are displayed. * * @since 0.5.0 * * @param props - Component props. * @returns The component to be rendered. */ export default function MultiCheckboxControl(props: WordPressComponentProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map