import type React from 'react'; import type { ServerProps } from '../../config/types.js'; export type WithServerSidePropsComponentProps = { [key: string]: any; Component: React.ComponentType; serverOnlyProps: ServerProps; }; export type WithServerSidePropsComponent = React.FC; //# sourceMappingURL=WithServerSideProps.d.ts.map