import type { JSX } from 'react'; import type { Render } from './scripts/types.js'; import type { ServerProps } from './spouts/types.js'; export default function laySpouts(spouts: (props: ServerProps) => Promise<{ app: JSX.Element; }>, { timeoutMS, onError, }?: { timeoutMS?: number; onError?: (error: unknown) => void; }): Render; //# sourceMappingURL=laySpouts.d.ts.map