export interface SignInFormProps { /** Host-validated root-relative destination after successful sign-in. */ redirectTo?: string; /** * Optional plain "Home" link rendered on the left of the action row. * Typically the host's client-safe canonical site URL so signed-out admins * can navigate back to the public site without typing the URL. */ homeUrl?: string; } export declare function SignInForm({ redirectTo, homeUrl }: SignInFormProps): import("react").JSX.Element;