export declare function useSuggestionPin(filterString: string): { isPinned: boolean; canPin: boolean; pinFilter: (filterString: string) => void; unpinFilter: (filterString: string) => void; limitReached: boolean; }; /** * @internal */ export declare function SuggestionPin(props: Readonly<{ size?: 'condensed' | 'default'; id: string; role?: string; filterString: string; className?: string; placement: 'top' | 'bottom' | 'left' | 'right'; fallbackPlacements: Array<'top' | 'bottom' | 'left' | 'right'>; disabled?: boolean; 'aria-disabled'?: boolean; showError?: boolean; }>): import("react/jsx-runtime").JSX.Element | null;