import type { ReactEventHandler } from 'react'; import type { LocalMessage } from 'stream-chat'; import type { PropsWithChildrenOnly } from '../types/types'; export interface MessageBounceContextValue { handleDelete: ReactEventHandler; handleEdit: ReactEventHandler; handleRetry: ReactEventHandler; message: LocalMessage; } export declare function useMessageBounceContext(componentName?: string): MessageBounceContextValue; export declare function MessageBounceProvider({ children }: PropsWithChildrenOnly): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=MessageBounceContext.d.ts.map