import * as React from 'react';
import { StylableComponentProps } from 'cosmoui';
import { PlaceModel } from '@lml/cosmo-ts-data';
import { PlacePartnerOption } from '../../data';
export interface PlaceTableRowProps extends StylableComponentProps {
    place: PlaceModel;
}
export interface PlaceTableRowComponentProps extends PlaceTableRowProps {
    partner: PlacePartnerOption;
    openPlaceFormDrawer: (key?: string) => void;
    closePlaceForm: () => void;
    getPartnerById: (partnerId: string) => void;
}
export declare const PlaceTableRow: React.ComponentClass<PlaceTableRowProps>;
