import React from 'react'; import { StyleProp, ViewStyle, TextStyle } from 'react-native'; import { TouchableOpacityProps } from './components/TouchableOpacity'; import { IMessage } from './Models'; export interface SendProps { text?: string; label?: string; containerStyle?: StyleProp; textStyle?: StyleProp; children?: React.ReactNode; /** Kept for API compatibility; the send button is always visible now. */ isSendButtonAlwaysVisible?: boolean; /** Text is optional, allow sending empty messages (useful for media-only messages) */ isTextOptional?: boolean; sendButtonProps?: Partial; onSend?(messages: Partial | Partial[], shouldResetInputToolbar: boolean): void; } export declare const Send: ({ text, containerStyle, children, isTextOptional, sendButtonProps, onSend, }: SendProps) => React.JSX.Element; //# sourceMappingURL=Send.d.ts.map