import React from 'react'; import { StyleProp, ViewStyle, ImageStyle } from 'react-native'; import { InputToolbarProps, SendProps } from 'react-native-gifted-chat'; import type { ImagePickerValue } from '../../interfaces'; export interface IInputToolbar extends InputToolbarProps, SendProps { hasCamera?: boolean; hasGallery?: boolean; onPressCamera?: () => void; /** Callback when gallery is pressed. Returns single image or array of images based on enableMultiImageSelection */ onPressGallery?: () => Promise; /** Enable selecting multiple images from gallery. Default: false */ enableMultiImageSelection?: boolean; containerStyle?: StyleProp; composeWrapperStyle?: StyleProp; composerTextInputStyle?: StyleProp; customViewStyle?: StyleProp; cameraIcon?: string; galleryIcon?: string; iconSend?: string; iconStyle?: StyleProp; renderLeftCustomView?: () => React.ReactNode; renderRightCustomView?: () => React.ReactNode; } declare const InputToolbar: React.FC; export default InputToolbar; //# sourceMappingURL=InputToolbar.d.ts.map