import { ViewProps } from "react-native"; import { ReactNode } from "react"; //#region src/primitives/attachment/AttachmentRoot.d.ts type AttachmentRootProps = ViewProps & { children: ReactNode; }; declare const AttachmentRoot: ({ children, ...viewProps }: AttachmentRootProps) => import("react").JSX.Element; //#endregion export { AttachmentRoot, AttachmentRootProps }; //# sourceMappingURL=AttachmentRoot.d.ts.map