import { FC } from 'react'; type SignupProp = { accessToken: string; cookie?: string | null; onSuccess: () => void; }; declare const SignupComponent: FC; export default SignupComponent;