/**
 * GenTeaserOrgs module.
 * @module @massds/mayflower-react/GenTeaserOrgs
 * @requires module:@massds/mayflower-assets/scss/01-atoms/button-with-icon
 * @requires module:@massds/mayflower-assets/scss/01-atoms/button-search
 * @requires module:@massds/mayflower-assets/scss/01-atoms/svg-icons
 * @requires module:@massds/mayflower-assets/scss/01-atoms/svg-loc-icons
 */
import React from 'react';
export interface GenTeaserOrgsProps {
    /** A comma seperate list of organizations. */
    orgs: string;
}
declare class GenTeaserOrgs extends React.Component<GenTeaserOrgsProps> {
    constructor(props: any);
    UNSAFE_componentWillReceiveProps(nextProps: any): void;
    handleClick(): void;
    handleKeyPress(e: any): void;
    render(): any;
}
export default GenTeaserOrgs;
