import { ComponentType, ReactElement, ReactNode } from 'react'; /** Type for Next.js Server Component Payload * Temporary patch until we update to default children and remove internal findComponent */ export interface ServerComponentPayload { _payload: { /** [modulePath, chunks, componentName] */ value: [string, string[], string]; }; } export declare function findComponent(Component: ComponentType): (child: ReactNode) => child is ReactElement; //# sourceMappingURL=findComponent.d.ts.map