import { default as React } from 'react'; import { CardPolicyChipFieldValue } from './cardPolicyFormTypes'; export interface AllowBlockChipPickerLabels { allow: string; block: string; } export interface AllowBlockChipPickerProps { labels: AllowBlockChipPickerLabels; name: string; className?: string; hasError?: boolean; isSearchLoading?: boolean; searchOptions?: CardPolicyChipFieldValue[]; searchPlaceholder?: string; style?: React.CSSProperties; onSearchTextChange?: (searchText: string) => void; } declare const AllowBlockChipPicker: React.FC; export default AllowBlockChipPicker;