import { ButtonHTMLAttributes } from 'react'; type SearchButtonProps = ButtonHTMLAttributes & { showShortcut?: boolean; shortcutText?: string; }; declare const SearchButton: import('react').ForwardRefExoticComponent & { showShortcut?: boolean; shortcutText?: string; } & import('react').RefAttributes>; export type { SearchButtonProps }; export { SearchButton }; //# sourceMappingURL=button.d.ts.map