import { PressableProps } from "react-native"; //#region src/primitives/composer/ComposerAddAttachment.d.ts type ComposerAddAttachmentProps = Omit & { children: PressableProps["children"]; }; /** * A button that triggers the attachment adding flow. * * Note: The actual file picker implementation is platform-specific. * This component calls `useComposerAddAttachment()` from `@assistant-ui/core/react`. * You must handle the file selection in your own component using the returned `addAttachment` callback. */ declare const ComposerAddAttachment: ({ children, disabled: disabledProp, ...pressableProps }: ComposerAddAttachmentProps) => import("react").JSX.Element; //#endregion export { ComposerAddAttachment, ComposerAddAttachmentProps }; //# sourceMappingURL=ComposerAddAttachment.d.ts.map