import React from 'react'; import { SearchBarPropsType } from './PropsType'; export interface SearchBarProps extends SearchBarPropsType { prefixCls?: string; className?: string; style?: React.CSSProperties; } export interface FSearchBarProps extends SearchBarProps { forwardedRef?: any; } export declare class FxmSearchBar extends React.Component { render(): JSX.Element; } declare const SearchBar: any; export default SearchBar;