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