import { ISearchBox, ISearchBoxProps } from "./types";
/**
 * Search Box Types
 */
export declare enum SearchBoxTypes {
    Collapsed = 0,
    CommandBar = 1,
    Default = 2
}
/**
 * Search Box
 */
export declare const SearchBox: (props: ISearchBoxProps) => ISearchBox;
