/// <reference types="react" />
import * as React from 'react';
import { FacetProps } from './FacetTypes';
interface CheckFacetState {
    showMoreLink: boolean;
    typeahead: string;
}
declare class CheckFacet extends React.Component<FacetProps & {
    search?: boolean;
    minValues?: number;
}, CheckFacetState> {
    static contextTypes: {
        searchState: React.Requireable<any>;
        transition: React.Requireable<any>;
    };
    constructor();
    onClick(value: string): () => void;
    onShowMore(): void;
    onChangeTypeahead(event: React.SyntheticEvent<HTMLInputElement>): void;
    render(): JSX.Element | null;
}
export { CheckFacetState, CheckFacet };
