import { TeaserSearchProps } from '../GenTeaserSearch';
export interface GenTeaserSearchBarProps {
    /**
     search:
     target: target url of the search bar
     id: id of the search bar
     queryInput: query input variable to replace in the target url with the user entered term
     placeholder: Placeholder text of the search bar.
     */
    search: TeaserSearchProps;
}
/**
 * Search bar
 */
declare const GenTeaserSearchBar: (props: GenTeaserSearchBarProps) => any;
export default GenTeaserSearchBar;
