stackpress
Version:
Incept is a content management framework.
13 lines (12 loc) • 773 B
TypeScript
import type { NestedObject, ServerPageProps } from '../../view/types.js';
import type { SigninInput, AuthConfigProps } from '../types.js';
export type AuthSigninFormProps = {
input: Partial<SigninInput>;
errors: NestedObject<string | string[]>;
};
export declare function AuthSigninForm(props: AuthSigninFormProps): import("react/jsx-runtime").JSX.Element;
export declare function AuthSigninBody(): import("react/jsx-runtime").JSX.Element;
export declare function AuthSigninHead(props: ServerPageProps<AuthConfigProps>): import("react/jsx-runtime").JSX.Element;
export declare function AuthSigninPage(props: ServerPageProps<AuthConfigProps>): import("react/jsx-runtime").JSX.Element;
export declare const Head: typeof AuthSigninHead;
export default AuthSigninPage;