interface StyledSearchProps {
    name?: string;
    isFocused?: boolean;
    searchHasValue?: boolean;
    searchWidth?: string;
    maxWidth?: string;
    showSearchButton?: boolean;
    variant?: string;
}
declare const StyledSearch: import("styled-components").StyledComponent<"div", any, {
    theme: object;
} & StyledSearchProps, "theme">;
export default StyledSearch;
