/**
 * Object containing URLs for authentication-related endpoints.
 * These URLs are used for various authentication operations such as sign-in, sign-out, etc.
 */
declare const authRoutesUrl: {
    module: string;
    /** Endpoint to get file details (sign-in)
     * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
     */
    signIn: string;
    /** Endpoint to create a re-login session */
    createReLoginSession: string;
    /** Endpoint to reset the password */
    resetPassword: string;
    /** Endpoint to initiate the forgot password process */
    forgotPassword: string;
    /** Endpoint to sign out */
    signOut: string;
};
export { authRoutesUrl };
