import { PressableProps } from "react-native"; //#region src/primitives/thread/ThreadSuggestion.d.ts type ThreadSuggestionProps = Omit & { children: PressableProps["children"]; /** The suggestion prompt. */ prompt: string; /** * When true, automatically sends the message. * When false, replaces or appends the composer text with the suggestion. */ send?: boolean | undefined; /** * Whether to clear the composer. When send is false, determines if composer * text is replaced (true) or appended (false). * @default true */ clearComposer?: boolean | undefined; }; declare const ThreadSuggestion: ({ children, prompt, send, clearComposer, disabled: disabledProp, ...pressableProps }: ThreadSuggestionProps) => import("react").JSX.Element; //#endregion export { ThreadSuggestion, ThreadSuggestionProps }; //# sourceMappingURL=ThreadSuggestion.d.ts.map