10 lines
335 B
TypeScript
10 lines
335 B
TypeScript
/// <reference types="react" />
|
|
import { Theme } from "../..";
|
|
import { InternalUrl } from "../../utils/parse-url";
|
|
interface VerifyRequestPageProps {
|
|
url: InternalUrl;
|
|
theme: Theme;
|
|
}
|
|
export default function VerifyRequestPage(props: VerifyRequestPageProps): JSX.Element;
|
|
export {};
|
|
//# sourceMappingURL=verify-request.d.ts.map
|