import React from "react"; import { FormComponentProps } from "@webiny/ui/types"; interface IconPickerProps extends FormComponentProps { label?: React.ReactNode; description?: React.ReactNode; } declare const IconPicker: ({ value, onChange, label, description, validation }: IconPickerProps) => React.JSX.Element; export default IconPicker;