import * as React from 'react'; interface SearchGlobalProps { /** * Value of the search input */ value?: string; /** * Callback when value changes */ onChange?: (value: string) => void; /** * Callback when search is submitted */ onSubmit?: (value: string) => void; /** * Callback when clear button is clicked */ onClear?: () => void; /** * Placeholder text */ placeholder?: string; /** * Custom className */ className?: string; /** * Custom style */ style?: React.CSSProperties; /** * Test ID for testing */ 'data-testid'?: string; } /** * SearchGlobal component - Arbor Design System * * A search input that expands from 160px to 300px when focused. * Shows keyboard shortcut (⌘ K) on hover and X button when focused. */ declare const SearchGlobal: React.ForwardRefExoticComponent>; export { SearchGlobal, type SearchGlobalProps };