/** * Reusable Search Input Component * Consistent search bar styling used across hierarchy, archetype browser, and other panels */ import React from 'react'; export interface SearchInputProps { /** Current search value */ value: string; /** Called when search value changes */ onChange: (value: string) => void; /** Placeholder text */ placeholder?: string; /** Whether to show the clear button */ allowClear?: boolean; /** Input size */ size?: 'small' | 'middle' | 'large'; /** Additional styles */ style?: React.CSSProperties; } export declare function SearchInput({ value, onChange, placeholder, allowClear, size, style, }: SearchInputProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SearchInput.d.ts.map