stream-chat-react
Version:
React components to create chat conversations or livestream style chat
9 lines • 472 B
TypeScript
import type { PropsWithChildren } from 'react';
export type AttachmentSelectorContextValue = {
fileInput: HTMLInputElement | null;
};
export declare const AttachmentSelectorContextProvider: ({ children, value, }: PropsWithChildren<{
value: AttachmentSelectorContextValue;
}>) => import("react/jsx-runtime").JSX.Element;
export declare const useAttachmentSelectorContext: () => AttachmentSelectorContextValue;
//# sourceMappingURL=AttachmentSelectorContext.d.ts.map