import { Facet } from './types'; import * as React from 'react'; export interface PendingProps { facet: Facet; operator?: string; } /** * Represents a facet candidate that has yet to have a value committed to it. */ export declare class Pending extends React.Component { render(): JSX.Element; }