import { ReactElement } from 'react'; import { SerializedStyles } from '@emotion/react'; export interface BCSearchboxProps { className?: string; onChange: (event: React.ChangeEvent) => void; value?: string; name?: string; icon?: string | ReactElement; placeholder?: string; onKeyDown?: (event: React.KeyboardEvent) => void; customInputCss?: SerializedStyles; customContainerCss?: SerializedStyles; onSearchIconClick?: () => void; onClearIconClick?: () => void; rtl?: boolean; } export declare const BCSearchbox: ({ className, onChange, value, name, placeholder, icon, onKeyDown, customInputCss, customContainerCss, rtl, onSearchIconClick, onClearIconClick, }: BCSearchboxProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default BCSearchbox;