import { type Ref } from 'vue'; type DateRange = { startDate: string; endDate: string; }; type TransactionIdDateSuggestionOptions = { searchKey: Ref; dateRange: Ref; onBeforeApply?: () => void; }; export declare const useTransactionIdDateSuggestion: ({ searchKey, dateRange, onBeforeApply, }: TransactionIdDateSuggestionOptions) => { promptSuggestion: () => void; closeSuggestion: () => void; }; export {};