import * as React from 'react';
import { PlacePartnerOption } from '../../data';
import { AbstractFormField } from 'cosmoui';
export interface SearchPlaceFormProps {
    submitForm: (data: string) => void;
}
export interface SearchPlaceFormComponentProps extends SearchPlaceFormProps {
    partners: PlacePartnerOption[];
    searchField: AbstractFormField<any>;
    setFormField: (name: string, form: string, field: AbstractFormField<any>) => any;
}
export declare const SearchPlaceForm: React.ComponentClass<any>;
