import React, { ChangeEvent, FC, MouseEvent } from 'react'; import { SimpleInterpolation } from 'styled-components'; export declare const SearchContainer: import("styled-components").StyledComponent<"label", import("../../helpers/theme").GlobalAppThemeInterface, SearchContainerProps, never>; export declare const SearchInput: import("styled-components").StyledComponent<"input", import("../../helpers/theme").GlobalAppThemeInterface, SearchInputProps, never>; export declare type SearchContainerProps = { cssOverrides?: SimpleInterpolation; width?: number; searchRef?: React.Ref; }; export declare type SearchInputProps = { onClick?: (event: MouseEvent) => void; onBlur?: (event?: ChangeEvent) => void; value?: string; width?: number; name?: string; }; export declare type SearchProps = SearchContainerProps & SearchInputProps & { onChange: (value: string, event?: ChangeEvent) => void; placeholder?: string; }; export declare const Search: FC;