8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
import React from 'react';
|
|
interface SignupPageProps {
|
|
onBack: () => void;
|
|
onSuccess: () => void;
|
|
}
|
|
export declare const SignupPage: React.FC<SignupPageProps>;
|
|
export {};
|