import { PressableProps } from "react-native"; //#region src/primitives/suggestion/SuggestionTrigger.d.ts type SuggestionTriggerProps = Omit & { children: PressableProps["children"]; /** * 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 SuggestionTrigger: ({ children, send, clearComposer, disabled: disabledProp, ...pressableProps }: SuggestionTriggerProps) => import("react").JSX.Element; //#endregion export { SuggestionTrigger, SuggestionTriggerProps }; //# sourceMappingURL=SuggestionTrigger.d.ts.map