stackpress
Version:
Incept is a content management framework.
13 lines (12 loc) • 774 B
TypeScript
import type { NestedObject, ServerPageProps } from '../../types/index.js';
import type { SignupInput, AuthConfigProps } from '../types.js';
export type AuthSignupFormProps = {
input: Partial<SignupInput>;
errors: NestedObject<string | string[]>;
};
export declare function AuthSignupForm(props: AuthSignupFormProps): import("react/jsx-runtime").JSX.Element;
export declare function AuthSignupBody(): import("react/jsx-runtime").JSX.Element;
export declare function AuthSignupHead(props: ServerPageProps<AuthConfigProps>): import("react/jsx-runtime").JSX.Element;
export declare function AuthSignupPage(props: ServerPageProps<AuthConfigProps>): import("react/jsx-runtime").JSX.Element;
export declare const Head: typeof AuthSignupHead;
export default AuthSignupPage;