import React from 'react'; interface LeaveReasonSearchBarProps { title?: string; showTitle?: boolean; readonly?: boolean; required?: boolean; placeholderKey?: string; defaultValue?: string; onChange: (leaveReason: any) => void; } declare const LeaveReasonSearchBar: ({ title, placeholderKey, defaultValue, showTitle, onChange, readonly, required, }: LeaveReasonSearchBarProps) => React.JSX.Element; export default LeaveReasonSearchBar;