import { default as React } from 'react'; export interface FieldTokenProps { /** Label text of tag. */ label: string; /** * Callback for user dismissal action, * called with token label as the argument */ onDismiss?: (label: string) => void; /** Optional value for `data-testid` attribute */ testId?: string; /** * Disabled state for FieldToken */ disabled?: boolean; } /** * Shared component to render "tokens" inside inputs, active filters, * or other user selections we want to tokenize. */ declare const FieldToken: React.ForwardRefExoticComponent>; export default FieldToken; //# sourceMappingURL=index.d.ts.map