UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

13 lines (12 loc) 516 B
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>;