import { PropsWithChildren } from 'react'; import { IbaseStateProps } from './useMessageInputState.js'; import { MessageType } from '../../../types/models.js'; interface filesData { file: HTMLInputElement | File; } declare function useUploadPicker(props: PropsWithChildren): { sendUploadMessage: (data: filesData, type: MessageType) => void; }; export { filesData, useUploadPicker }; //# sourceMappingURL=useUploadPicker.d.ts.map